initial commit

This commit is contained in:
boris
2025-09-30 09:24:25 +01:00
committed by boris
parent a783a12c97
commit c7770ea03b
4695 changed files with 525784 additions and 0 deletions

58
composer.json Normal file
View File

@@ -0,0 +1,58 @@
{
"name": "awd/symfony",
"type": "project",
"license": "AGPL3.0",
"description": "A Symfony application skeleton for Advanced Web Development",
"authors": [
{
"name": "George Wilkinson",
"email": "admin@ntbx.io"
}
],
"require-dev": {
"phpunit/phpunit": "^11.5",
"symfony/browser-kit": "^7.3",
"symfony/css-selector": "^7.3",
"symfony/debug-bundle": "^7.1",
"symfony/maker-bundle": "^1.55",
"symfony/stopwatch": "^7.3",
"symfony/web-profiler-bundle": "^7.3"
},
"config": {
"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"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"symfony/config": "^7.3",
"symfony/flex": "^2.8",
"symfony/runtime": "^7.3",
"symfony/yaml": "^7.3"
}
}