-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcomposer.json
38 lines (38 loc) · 1.14 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "retailcrm/opencart-module",
"description": "Integration module for Opencart & RetailCRM",
"license": "GPL-3.0",
"type": "project",
"authors": [
{
"name": "RetailDriverLLC",
"email": "[email protected]"
}
],
"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"
],
"opencart:install" : "bin/robo --load-from tests/RoboFile.php opencart:install"
},
"require": {
"ext-json": "*"
},
"require-dev": {
"consolidation/robo": "~1.0",
"phpcompatibility/php-compatibility": "^9.3",
"beyondit/opencart-test-suite": "~3.0"
}
}