initialize project with composer and gitignore
This commit is contained in:
commit
6cf0d5aa3c
3 changed files with 1833 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
/vendor/
|
||||||
18
composer.json
Normal file
18
composer.json
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"name": "daily-goals/daily-goals",
|
||||||
|
"type": "project",
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^13.0"
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"App\\": "app/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload-dev": {
|
||||||
|
"psr-4": {
|
||||||
|
"Tests\\": "tests/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"require": {}
|
||||||
|
}
|
||||||
1814
composer.lock
generated
Normal file
1814
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue