opencart-module/composer.json
Akolzin Dmitry 579150ea08
cleared api version detecting (#198)
* cleared api version detecting
* phpcs stage
2020-09-25 10:39:00 +03:00

38 lines
1.1 KiB
JSON

{
"name": "retailcrm/opencart-module",
"description": "Integration module for Opencart & retailCRM",
"license": "GPL-3.0",
"type": "project",
"authors": [
{
"name": "RetailDriverLLC",
"email": "integration@retailcrm.ru"
}
],
"config": {
"bin-dir": "bin/",
"preferred-install": "source"
},
"extra": {
"opencart-dir" : "www"
},
"scripts" : {
"test-admin": "bin/phpunit --coverage-php coverage/admin.cov --testsuite admin-tests --colors=always",
"test-catalog": "bin/phpunit --coverage-php coverage/catalog.cov --testsuite catalog-tests --colors=always",
"test-system": "bin/phpunit --coverage-php coverage/system.cov --testsuite system-tests --colors=always",
"test": [
"@test-admin",
"@test-catalog",
"@test-system"
],
"setup" : "bin/robo --load-from tests/RoboFile.php opencart:setup"
},
"require": {
"ext-json": "*"
},
"require-dev": {
"consolidation/robo": "~1.0",
"phpcompatibility/php-compatibility": "^9.3"
}
}