initialize project with composer and gitignore

This commit is contained in:
Yisroel Baum 2026-02-14 20:46:19 +02:00
commit 6cf0d5aa3c
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
3 changed files with 1833 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/vendor/

18
composer.json Normal file
View 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

File diff suppressed because it is too large Load diff