opencart-module/composer.json

40 lines
1.2 KiB
JSON
Raw Normal View History

2018-06-13 16:13:08 +03:00
{
"name": "retailcrm/opencart-module",
"description": "Integration module for Opencart & RetailCRM",
2018-06-13 16:13:08 +03:00
"license": "GPL-3.0",
"type": "project",
"authors": [
{
"name": "RetailDriverLLC",
"email": "support@retailcrm.pro"
2018-06-13 16:13:08 +03:00
}
],
"config": {
"bin-dir": "bin/",
"preferred-install": "source"
},
"extra": {
"opencart-dir" : "www"
},
"scripts" : {
2020-02-18 21:42:50 +03:00
"test-admin": "bin/phpunit --coverage-php coverage/admin.cov --testsuite admin-tests --colors=always",
2020-02-18 18:22:03 +03:00
"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",
2020-02-18 18:17:59 +03:00
"test": [
"@test-admin",
"@test-catalog",
"@test-system"
2020-02-18 18:17:59 +03:00
],
2020-02-17 17:46:01 +03:00
"setup" : "bin/robo --load-from tests/RoboFile.php opencart:setup"
2020-02-19 11:49:32 +03:00
},
"require": {
"ext-json": "*"
},
2020-02-19 11:49:32 +03:00
"require-dev": {
2020-09-02 12:21:33 +03:00
"consolidation/robo": "~1.0",
"phpcompatibility/php-compatibility": "^9.3",
"beyondit/opencart-test-suite": "~3.0",
2021-08-31 13:58:30 +03:00
"opencart/opencart": "^3.0"
2018-06-13 16:13:08 +03:00
}
}