59 lines
1.2 KiB
JSON
59 lines
1.2 KiB
JSON
{
|
|
"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"
|
|
}
|
|
}
|