first commit

This commit is contained in:
team 1
2026-02-11 14:15:08 +01:00
parent a4742c2c38
commit aa7d362bc3
58 changed files with 9999 additions and 0 deletions

59
composer.json Normal file
View File

@@ -0,0 +1,59 @@
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.2",
"ext-ctype": "*",
"ext-curl": "*",
"ext-iconv": "*",
"symfony/console": "^7.4",
"symfony/dotenv": "^7.4",
"symfony/flex": "^2",
"symfony/framework-bundle": "^7.4",
"symfony/monolog-bundle": "^4.0",
"symfony/runtime": "^7.4",
"symfony/uid": "7.4.*",
"symfony/yaml": "^7.4"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.4.*"
}
}
}