92 lines
2.6 KiB
JSON
92 lines
2.6 KiB
JSON
|
{
|
||
|
"name": "symfony/skeleton",
|
||
|
"type": "project",
|
||
|
"license": "MIT",
|
||
|
"description": "A minimal Symfony project recommended to create bare bones applications",
|
||
|
"minimum-stability": "stable",
|
||
|
"prefer-stable": true,
|
||
|
"require": {
|
||
|
"php": ">=8.4.3",
|
||
|
"ext-ctype": "*",
|
||
|
"ext-iconv": "*",
|
||
|
"doctrine/dbal": "^3",
|
||
|
"doctrine/doctrine-bundle": "^2.13",
|
||
|
"doctrine/doctrine-migrations-bundle": "^3.4",
|
||
|
"doctrine/orm": "^3.3",
|
||
|
"easycorp/easyadmin-bundle": "^4.24",
|
||
|
"runtime/frankenphp-symfony": "^0.2.0",
|
||
|
"symfony/asset": "7.2.*",
|
||
|
"symfony/asset-mapper": "7.2.*",
|
||
|
"symfony/console": "7.2.*",
|
||
|
"symfony/dotenv": "7.2.*",
|
||
|
"symfony/flex": "^2",
|
||
|
"symfony/framework-bundle": "7.2.*",
|
||
|
"symfony/mercure-bundle": "^0.3.9",
|
||
|
"symfony/runtime": "7.2.*",
|
||
|
"symfony/translation": "7.2.*",
|
||
|
"symfony/twig-bundle": "7.2.*",
|
||
|
"symfony/ux-twig-component": "^2.23",
|
||
|
"symfony/yaml": "7.2.*",
|
||
|
"twig/extra-bundle": "^2.12|^3.0",
|
||
|
"twig/intl-extra": "^3.19",
|
||
|
"twig/twig": "^2.12|^3.0"
|
||
|
},
|
||
|
"config": {
|
||
|
"allow-plugins": {
|
||
|
"php-http/discovery": true,
|
||
|
"symfony/flex": true,
|
||
|
"symfony/runtime": true
|
||
|
},
|
||
|
"bump-after-update": true,
|
||
|
"sort-packages": true
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"App\\": "src/"
|
||
|
}
|
||
|
},
|
||
|
"autoload-dev": {
|
||
|
"psr-4": {
|
||
|
"App\\Tests\\": "tests/"
|
||
|
}
|
||
|
},
|
||
|
"replace": {
|
||
|
"symfony/polyfill-ctype": "*",
|
||
|
"symfony/polyfill-iconv": "*",
|
||
|
"symfony/polyfill-php72": "*",
|
||
|
"symfony/polyfill-php73": "*",
|
||
|
"symfony/polyfill-php74": "*",
|
||
|
"symfony/polyfill-php80": "*",
|
||
|
"symfony/polyfill-php81": "*",
|
||
|
"symfony/polyfill-php82": "*"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"auto-scripts": {
|
||
|
"cache:clear": "symfony-cmd",
|
||
|
"assets:install %PUBLIC_DIR%": "symfony-cmd",
|
||
|
"importmap:install": "symfony-cmd"
|
||
|
},
|
||
|
"post-install-cmd": [
|
||
|
"@auto-scripts"
|
||
|
],
|
||
|
"post-update-cmd": [
|
||
|
"@auto-scripts"
|
||
|
]
|
||
|
},
|
||
|
"conflict": {
|
||
|
"symfony/symfony": "*"
|
||
|
},
|
||
|
"extra": {
|
||
|
"symfony": {
|
||
|
"allow-contrib": false,
|
||
|
"require": "7.2.*",
|
||
|
"docker": true
|
||
|
}
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"symfony/maker-bundle": "^1.62",
|
||
|
"symfony/stopwatch": "7.2.*",
|
||
|
"symfony/web-profiler-bundle": "7.2.*"
|
||
|
}
|
||
|
}
|