1
0
mirror of synced 2024-12-05 03:06:02 +03:00
DeliveryModuleBundle/composer.json
2020-12-04 19:08:31 +03:00

50 lines
1.1 KiB
JSON

{
"name": "retailcrm/delivery-module-bundle",
"type": "symfony-bundle",
"description": "Delivery module skeleton for RetailCRM",
"license": "MIT",
"authors": [
{
"name": "RetailCRM",
"email": "support@retailcrm.ru"
}
],
"require": {
"php": "^7.3",
"ext-json": "*",
"ext-zip": "*",
"guzzlehttp/guzzle": "^7.0",
"psr/log": "^1.1",
"symfony/framework-bundle": "^5.1",
"symfony/lock": "^5.1",
"symfony/polyfill-uuid": "^1.20",
"symfony/routing": "^5.1",
"symfony/serializer": "^5.1",
"symfony/translation": "^5.1",
"symfony/validator": "^5.1"
},
"require-dev": {
"doctrine/orm": "^2.7",
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^9.4",
"vimeo/psalm": "^4.1"
},
"autoload": {
"psr-4": {
"RetailCrm\\DeliveryModuleBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RetailCrm\\DeliveryModuleBundle\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"config": {
"sort-packages": true
}
}