forked from zencart/zencart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
{
"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"
}
],
"funding": [
{
"type": "other",
"url": "https://zen-cart.com/donate"
}
],
"support": {
"forum": "https://zen-cart.com/forum",
"source": "https://zen-cart.com/getit",
"docs": "https://docs.zen-cart.com"
},
"_comment": "compatible with PHP 7.3-8.0",
"require": {
"php": "^7.3|^8.0",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"laravel/dusk": ">5.8",
"mikey179/vfsstream": ">1.6",
"orchestra/dusk-updater": "^1.5",
"phpunit/phpunit": "^9.5",
"sempro/phpunit-pretty-print": "^1.4"
},
"autoload": {
"classmap": ["includes/classes", "includes/modules"]
},
"include-path": ["includes/"],
"autoload-dev": {
"classmap": ["not_for_release/testFramework"],
"psr-4": {
"Tests\\": "not_for_release/testFramework/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.5.x-dev"
}
},
"config": {
"bin-dir": "vendor/bin",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"tests": "phpunit --verbose --testsuite UnitTests --printer 'Sempro\\PHPUnitPrettyPrinter\\PrettyPrinterForPhpUnit9'",
"dusk": "phpunit --verbose --testsuite Browser --debug --printer 'Sempro\\PHPUnitPrettyPrinter\\PrettyPrinterForPhpUnit9'"
},
"minimum-stability": "dev",
"prefer-stable": true
}