First draft

This commit is contained in:
2026-04-30 16:08:01 +02:00
parent 7ce97c0c55
commit e09a9fc2a6
21 changed files with 7137 additions and 0 deletions

23
composer.json Normal file
View File

@@ -0,0 +1,23 @@
{
"autoload" : {
"psr-4" : {
"App\\" : "src/"
}
},
"require": {
"symfony/http-foundation": "^6.1",
"symfony/http-kernel": "^6.1",
"symfony/routing": "^6.1",
"symfony/dependency-injection": "^6.1",
"symfony/string": "^6.1",
"symfony/serializer": "^7.1",
"symfony/property-access": "^7.1",
"symfony/config": "^7.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^1.12",
"rector/rector": "^1.2",
"phpunit/phpunit": "^10.5.63"
}
}