deblan.io-murph/composer.json

72 lines
1.8 KiB
JSON
Raw Normal View History

{
"type": "project",
"license": "proprietary",
2022-01-27 10:10:12 +01:00
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
2022-01-27 10:10:12 +01:00
"php": ">=8.0.0",
2021-03-29 22:45:51 +02:00
"beberlei/doctrineextensions": "^1.3",
2021-03-29 19:40:55 +02:00
"friendsofsymfony/jsrouting-bundle": "^2.7",
2022-05-29 21:04:28 +02:00
"gregwar/captcha-bundle": "^2.2",
"knplabs/knp-markdown-bundle": "^1.9",
"knplabs/knp-menu-bundle": "^3.1",
2022-03-18 15:03:37 +01:00
"murph/murph-core": "dev-master"
},
"require-dev": {
"symfony/browser-kit": "^5.2",
"symfony/css-selector": "^5.2",
"symfony/debug-bundle": "^5.2",
2022-02-22 11:06:02 +01:00
"symfony/maker-bundle": "^1.37",
"symfony/phpunit-bridge": "^5.2",
"symfony/stopwatch": "^5.2",
"symfony/var-dumper": "^5.2",
"symfony/web-profiler-bundle": "^5.2"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
2022-01-23 18:26:26 +01:00
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
},
"autoload": {
"psr-4": {
2022-03-13 21:35:39 +01:00
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*"
},
"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,
2022-01-23 18:40:56 +01:00
"require": "5.4.*"
}
}
}