2019-12-26 17:47:33 +03:00
|
|
|
{
|
|
|
|
"name": "retailcrm/delivery-module-bundle",
|
|
|
|
"type": "symfony-bundle",
|
2020-11-01 16:29:28 +03:00
|
|
|
"description": "Delivery module skeleton for RetailCRM",
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "RetailCRM",
|
|
|
|
"email": "support@retailcrm.ru"
|
2019-12-26 17:47:33 +03:00
|
|
|
}
|
2020-11-01 16:29:28 +03:00
|
|
|
],
|
2019-12-26 17:47:33 +03:00
|
|
|
"require": {
|
|
|
|
"php": "^7.3",
|
2020-08-18 16:20:10 +03:00
|
|
|
"ext-json": "*",
|
|
|
|
"ext-zip": "*",
|
2020-11-01 16:29:28 +03:00
|
|
|
"guzzlehttp/guzzle": "^7.0",
|
|
|
|
"psr/log": "^1.1",
|
|
|
|
"symfony/framework-bundle": "^5.1",
|
2020-08-18 16:20:10 +03:00
|
|
|
"symfony/lock": "^5.1",
|
2020-11-01 16:29:28 +03:00
|
|
|
"symfony/polyfill-uuid": "^1.20",
|
2020-08-18 16:20:10 +03:00
|
|
|
"symfony/routing": "^5.1",
|
2020-11-01 16:29:28 +03:00
|
|
|
"symfony/serializer": "^5.1",
|
2020-07-15 18:31:28 +03:00
|
|
|
"symfony/translation": "^5.1",
|
|
|
|
"symfony/validator": "^5.1"
|
2019-12-26 17:47:33 +03:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2020-11-01 16:29:28 +03:00
|
|
|
"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
|
2019-12-26 17:47:33 +03:00
|
|
|
}
|
2020-08-18 17:36:06 +03:00
|
|
|
}
|