opencart-module/composer.json

40 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2018-06-13 16:13:08 +03:00
{
"name": "retailcrm/opencart-module",
"description": "Integration module for Opencart & RetailCRM",
"license": "GPL-3.0",
"type": "project",
"authors": [
{
"name": "RetailDriverLLC",
"email": "integration@retailcrm.ru"
}
],
2018-09-27 16:46:04 +03:00
"version": "3.1.0-alpha1",
2018-06-13 16:13:08 +03:00
"require-dev": {
"opencart/opencart" : "3.1.0.0_a1",
2018-06-13 16:13:08 +03:00
"vlucas/phpdotenv": "~1.1.0",
2018-08-29 17:45:35 +03:00
"phpunit/phpunit" : "^6",
"beyondit/opencart-test-suite": "~3.0",
2018-06-13 16:13:08 +03:00
"consolidation/robo": "~1",
"henrikbjorn/lurker": "^1.2"
},
"config": {
"bin-dir": "bin/",
"preferred-install": "source"
},
"extra": {
"opencart-dir" : "www"
},
"scripts" : {
2018-09-27 16:46:04 +03:00
"test-library": "bin/phpunit --testsuite library-tests --colors=always",
2018-06-13 16:13:08 +03:00
"test-admin": "bin/phpunit --testsuite admin-tests --colors=always",
"test-catalog": "bin/phpunit --testsuite catalog-tests --colors=always",
"test": [
2018-09-27 16:46:04 +03:00
"@test-library",
2018-06-13 16:13:08 +03:00
"@test-admin",
"@test-catalog"
],
"setup" : "bin/robo opencart:setup"
}
}