forked from zencart/zencart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.55 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "zencart/zencart",
"description": "Open Source E-commerce Application",
"homepage": "https://www.zen-cart.com",
"license": "GPL-2.0",
"authors": [
{
"name": "The Zen-Cart Team",
"homepage": "https://github.com/zencart/zencart/graphs/contributors"
}
],
"__comment": "compatible with PHP 5.5-7.1",
"require": {
"php": ">=5.5"
},
"require-dev": {
"jakoch/phantomjs-installer": "^2.1",
"mikey179/vfsStream": ">1.6",
"behat/behat": "^3.2",
"behat/mink": "^1.7",
"behat/mink-goutte-driver": "^1.2",
"behat/mink-selenium2-driver": "^1.3",
"behat/mink-extension": "^2.2",
"phpunit/phpunit": "~5.7 || ~4.8"
},
"autoload": {
"classmap": ["includes/classes", "includes/modules"],
"psr-4": {
"ZenCart\\": "includes/library/zencart/",
"ZenCart\\Admin\\": "admin/includes/library/zencart/"
}
},
"autoload-dev": {
"classmap": ["testFramework"]
},
"include-path": ["includes/"],
"config": {
"bin-dir": "vendor/bin"
},
"scripts": {
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"tests": "phpunit --verbose -c testFramework/unittests/phpunit.xml",
"webtests": "phpunit --verbose -c testFramework/webtests/phpunit.xml --debug",
"behat": "vendor/bin/behat"
}
}