fediplan/composer.json

72 lines
1.8 KiB
JSON
Raw Normal View History

2019-08-08 17:29:59 +02:00
{
"type": "project",
"license": "proprietary",
"require": {
"php": "^7.1.3",
"ext-ctype": "*",
"ext-iconv": "*",
"craue/formflow-bundle": "^3.2",
2019-08-11 18:24:07 +02:00
"friendsofsymfony/jsrouting-bundle": "^2.4",
2019-08-08 17:29:59 +02:00
"sensio/framework-extra-bundle": "^5.4",
"symfony/asset": "4.3.*",
"symfony/console": "4.3.*",
2019-08-10 09:41:59 +02:00
"symfony/debug": "4.3.*",
2019-08-08 17:29:59 +02:00
"symfony/dotenv": "4.3.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "4.3.*",
"symfony/security-bundle": "4.3.*",
2019-08-22 09:54:45 +02:00
"symfony/translation": "4.3.*",
2019-08-08 17:29:59 +02:00
"symfony/twig-bundle": "4.3.*",
2019-08-22 12:24:02 +02:00
"symfony/yaml": "4.3.*",
"twig/extensions": "^1.5"
2019-08-08 17:29:59 +02:00
},
"require-dev": {
"symfony/web-server-bundle": "4.3.*"
},
"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.3.*"
}
}
}