forked from zencart/zencart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (75 loc) · 2.69 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "zencart/zencart",
"description": "Open Source E-commerce Application",
"homepage": "https://www.zen-cart.com",
"license": "GPL-2.0-only",
"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 8.0-8.3",
"require-dev": {
"php": "^8.0",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.7",
"illuminate/console": "^9.52",
"illuminate/database": "^9.52",
"illuminate/events": "^9.52",
"kitloong/laravel-migrations-generator": "^6.10",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9.6",
"sempro/phpunit-pretty-print": "^1.4",
"symfony/browser-kit": "^6.0",
"symfony/css-selector": "^6.0",
"symfony/http-client": "^6.0",
"symfony/maker-bundle": "^1.49",
"symfony/mime": "^6.0",
"symfony/phpunit-bridge": "^7.0",
"symfony/test-pack": "^1.1"
},
"autoload": {
"classmap": ["includes/classes", "includes/modules"]
},
"include-path": ["includes/"],
"autoload-dev": {
"classmap": ["not_for_release/testFramework"],
"psr-4": {
"Tests\\": "not_for_release/testFramework/",
"App\\": "laravel/app/",
"Seeders\\": "not_for_release/testFramework/Support/database/Seeders/",
"Migrations\\": "not_for_release/testFramework/Support/database/migrations/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
},
"config": {
"bin-dir": "vendor/bin",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"feature-tests": "phpunit --verbose --testsuite FeatureStore,FeatureAdmin --printer 'Sempro\\PHPUnitPrettyPrinter\\PrettyPrinterForPhpUnit9'",
"feature-tests-store": "phpunit --verbose --testsuite FeatureStore --printer 'Sempro\\PHPUnitPrettyPrinter\\PrettyPrinterForPhpUnit9'",
"feature-tests-admin": "phpunit --verbose --testsuite FeatureAdmin --printer 'Sempro\\PHPUnitPrettyPrinter\\PrettyPrinterForPhpUnit9'",
"unit-tests": "phpunit --verbose --process-isolation --testsuite Unit --printer 'Sempro\\PHPUnitPrettyPrinter\\PrettyPrinterForPhpUnit9'"
},
"minimum-stability": "dev",
"prefer-stable": true
}