-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcomposer.json
40 lines (40 loc) · 1.08 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
39
40
{
"name" : "beyondit/opencart-test-suite",
"description" : "Testing Suite for OpenCart Development",
"type" : "opencart-extension",
"keywords" : ["opencart", "phpunit"],
"license" : "GPL-3.0",
"authors" : [{
"name" : "Stefan Huber",
"email" : "[email protected]",
"homepage" : "http://www.beyondit.at",
"role" : "Developer"
}],
"require" : {
"php" : ">=5.4",
"phpunit/phpunit" : "^6.2",
"beyondit/opencart-extension-installer" : "*"
},
"require-dev" : {
"opencart/opencart" : "3.0.2.0",
"consolidation/robo" : "^1.1",
"vlucas/phpdotenv" : "^2.4",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload" : {
"files" : [
"src/OpenCartTest.php"
]
},
"config" : {
"bin-dir" : "bin/",
"preferred-install" : "source"
},
"scripts" : {
"phpcs" : "phpcs --standard=PSR2 -n src tests",
"phpcbf" : "phpcbf --standard=PSR2 -n src tests"
},
"extra" : {
"src-dir" : "src/upload"
}
}