opencart-module/composer.json
2021-08-31 13:58:30 +03:00

40 lines
1.2 KiB
JSON

{
"name": "retailcrm/opencart-module",
"description": "Integration module for Opencart & RetailCRM",
"license": "GPL-3.0",
"type": "project",
"authors": [
{
"name": "RetailDriverLLC",
"email": "support@retailcrm.pro"
}
],
"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",
"beyondit/opencart-test-suite": "~3.0",
"opencart/opencart": "^3.0"
}
}