2020-02-04 17:20:39 +01:00
|
|
|
{
|
|
|
|
"type": "project",
|
|
|
|
"license": "proprietary",
|
|
|
|
"require": {
|
|
|
|
"php": "^7.1.3",
|
|
|
|
"ext-ctype": "*",
|
|
|
|
"ext-iconv": "*",
|
2020-02-17 22:28:57 +01:00
|
|
|
"nelmio/cors-bundle": "^2.0",
|
|
|
|
"sensio/framework-extra-bundle": "^5.5",
|
2020-02-04 17:20:39 +01:00
|
|
|
"symfony/console": "4.4.*",
|
|
|
|
"symfony/dotenv": "4.4.*",
|
|
|
|
"symfony/flex": "^1.3.1",
|
|
|
|
"symfony/framework-bundle": "4.4.*",
|
2020-02-17 22:28:57 +01:00
|
|
|
"symfony/inflector": "4.4.*",
|
2020-02-04 17:20:39 +01:00
|
|
|
"symfony/orm-pack": "^1.0",
|
|
|
|
"symfony/security-bundle": "4.4.*",
|
|
|
|
"symfony/yaml": "4.4.*"
|
|
|
|
},
|
|
|
|
"require-dev": {
|
2020-02-17 22:28:57 +01:00
|
|
|
"doctrine/doctrine-fixtures-bundle": "^3.3",
|
2020-03-09 15:35:19 +01:00
|
|
|
"phpro/grumphp-shim": "^0.18.0",
|
2020-02-04 17:20:39 +01:00
|
|
|
"symfony/maker-bundle": "^1.14",
|
|
|
|
"symfony/web-server-bundle": "4.4.*"
|
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"preferred-install": {
|
|
|
|
"*": "dist"
|
|
|
|
},
|
|
|
|
"sort-packages": true
|
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"App\\": "src/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"App\\Tests\\": "tests/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"replace": {
|
|
|
|
"paragonie/random_compat": "2.*",
|
|
|
|
"symfony/polyfill-ctype": "*",
|
|
|
|
"symfony/polyfill-iconv": "*",
|
|
|
|
"symfony/polyfill-php71": "*",
|
|
|
|
"symfony/polyfill-php70": "*",
|
|
|
|
"symfony/polyfill-php56": "*"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"auto-scripts": {
|
|
|
|
"cache:clear": "symfony-cmd",
|
|
|
|
"assets:install %PUBLIC_DIR%": "symfony-cmd"
|
|
|
|
},
|
|
|
|
"post-install-cmd": [
|
|
|
|
"@auto-scripts"
|
|
|
|
],
|
|
|
|
"post-update-cmd": [
|
|
|
|
"@auto-scripts"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"conflict": {
|
|
|
|
"symfony/symfony": "*"
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"symfony": {
|
|
|
|
"allow-contrib": false,
|
|
|
|
"require": "4.4.*"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|