Part-DB.Part-DB-server/composer.json

127 lines
3.8 KiB
JSON
Raw Normal View History

2019-02-23 16:49:38 +01:00
{
"type": "project",
2019-03-27 19:08:28 +01:00
"license": "GPL-2.0-or-later",
2019-02-23 16:49:38 +01:00
"require": {
"php": "^7.2.5",
"ext-bcmath": "*",
2019-02-23 16:49:38 +01:00
"ext-ctype": "*",
2019-10-11 23:53:12 +02:00
"ext-gd": "*",
2019-02-23 16:49:38 +01:00
"ext-iconv": "*",
2019-04-06 13:31:23 +02:00
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"doctrine/annotations": "^1.6",
2020-01-01 18:02:53 +01:00
"doctrine/doctrine-bundle": "^2.0",
"florianv/swap": "^4.0",
"friendsofsymfony/ckeditor-bundle": "^2.0",
2020-01-09 19:37:04 +01:00
"gregwar/captcha-bundle": "^2.1.0",
"league/html-to-markdown": "^4.8",
"liip/imagine-bundle": "^2.2",
"nyholm/psr7": "^1.1",
"ocramius/proxy-manager": "2.2.*",
"omines/datatables-bundle": "^0.4.0",
2019-12-29 13:35:30 +01:00
"r/u2f-two-factor-bundle": "dev-u2f-api",
"php-translation/symfony-bundle": "^0.10.0",
"s9e/text-formatter": "^2.1",
"scheb/two-factor-bundle": "^4.11",
2019-02-23 16:49:38 +01:00
"sensio/framework-extra-bundle": "^5.1",
"sensiolabs/security-checker": "^6.0",
"shivas/versioning-bundle": "^3.1",
2019-03-25 16:42:50 +01:00
"symfony/apache-pack": "^1.0",
2019-11-21 22:16:30 +01:00
"symfony/asset": "4.4.*",
"symfony/console": "4.4.*",
"symfony/dotenv": "4.4.*",
"symfony/expression-language": "4.4.*",
2019-02-23 16:49:38 +01:00
"symfony/flex": "^1.1",
2019-11-21 22:16:30 +01:00
"symfony/form": "4.4.*",
"symfony/framework-bundle": "4.4.*",
"symfony/http-client": "4.4.*",
2019-12-01 15:18:44 +01:00
"symfony/http-kernel": "4.4.*",
"symfony/mailer": "4.4.*",
2019-02-23 16:49:38 +01:00
"symfony/monolog-bundle": "^3.1",
"symfony/orm-pack": "*",
2019-11-21 22:16:30 +01:00
"symfony/process": "4.4.*",
"symfony/security-bundle": "4.4.*",
2019-02-23 16:49:38 +01:00
"symfony/serializer-pack": "*",
2019-11-21 22:16:30 +01:00
"symfony/translation": "4.4.*",
"symfony/twig-bundle": "4.4.*",
"symfony/validator": "4.4.*",
"symfony/web-link": "4.4.*",
"symfony/webpack-encore-bundle": "^1.1",
2019-11-21 22:16:30 +01:00
"symfony/yaml": "4.4.*",
"twig/cssinliner-extra": "^3.0",
"twig/extra-bundle": "^3.0",
"twig/inky-extra": "^3.0",
"twig/intl-extra": "^3.0",
"twig/markdown-extra": "^3.0",
"webmozart/assert": "^1.4"
2019-02-23 16:49:38 +01:00
},
"require-dev": {
2019-12-27 15:38:56 +01:00
"dama/doctrine-test-bundle": "^6.0",
2019-10-20 14:35:19 +02:00
"doctrine/doctrine-fixtures-bundle": "^3.2",
2019-03-27 19:08:28 +01:00
"roave/security-advisories": "dev-master",
2019-02-23 16:49:38 +01:00
"symfony/debug-pack": "*",
2019-10-20 14:35:19 +02:00
"symfony/maker-bundle": "^1.13",
2019-02-23 16:49:38 +01:00
"symfony/profiler-pack": "*",
2019-03-26 23:34:40 +01:00
"symfony/test-pack": "^1.0",
"symplify/easy-coding-standard": "^7.1",
2019-09-23 13:29:51 +02:00
"vimeo/psalm": "^3.5"
2019-02-23 16:49:38 +01:00
},
"config": {
"preferred-install": {
"*": "dist"
},
"platform": {
"php": "7.2.5"
},
2019-02-23 16:49:38 +01:00
"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",
"ckeditor:install --clear=drop": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"security-checker security:check": "script"
2019-02-23 16:49:38 +01:00
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
2019-11-21 22:16:30 +01:00
"require": "4.4.*"
2019-02-23 16:49:38 +01:00
}
2019-12-29 13:35:30 +01:00
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:stephanvierkant/u2f-two-factor-bundle.git"
}
]
2019-02-23 16:49:38 +01:00
}