-
Notifications
You must be signed in to change notification settings - Fork 119
/
composer.json
79 lines (79 loc) · 2.24 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
77
78
79
{
"name": "silvershop/core",
"description": "Provides an ecommerce product catalog, shopping cart, and order management system",
"license": "BSD-2-Clause",
"type": "silverstripe-vendormodule",
"homepage": "http://silvershop.github.io/",
"keywords": [
"silverstripe",
"shop",
"shopping cart",
"ecommerce",
"online shopping",
"payment",
"ordering",
"silverstripe"
],
"authors": [
{
"name": "SilverShop Contributors",
"homepage": "https://github.com/silvershop/silvershop-core/graphs/contributors"
}
],
"require": {
"silverstripe/cms": "^5",
"silverstripe/asset-admin": "*",
"silverstripe/silverstripe-omnipay": "^4",
"silvershop/silverstripe-listsorter": "^3",
"silvershop/silverstripe-sqlquerylist": "^3",
"symbiote/silverstripe-gridfieldextensions": "^4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"php-http/guzzle7-adapter": "^1",
"omnipay/dummy": "dev-master",
"omnipay/paymentexpress": "dev-master",
"squizlabs/php_codesniffer": "^3.7.2"
},
"replace": {
"burnbright/silverstripe-shop": "1.*"
},
"autoload": {
"psr-4": {
"SilverShop\\": "src/",
"SilverShop\\Tests\\": "tests/php/"
}
},
"suggest": {
"bummzack/silverstripe-omnipay-ui": "Adds UI Components to manage payments in the SilverStripe CMS.",
"silvershop/discounts": "Create coupons and generic discounts to be applied at checkout.",
"silvershop/shipping": "Provide various shipping methods."
},
"extra": {
"snapshot": "https://raw.github.com/silvershop/silvershop-core/gh-pages/assets/screenshots/shipping%20estimate%20form.png",
"branch-alias": {
"dev-main": "4.x-dev"
},
"expose": [
"client/dist"
]
},
"support": {
"issues": "https://github.com/silvershop/silvershop-core/issues",
"source": "https://github.com/silvershop/silvershop-core",
"docs": "https://github.com/silvershop/silvershop-core/tree/main/docs/en"
},
"scripts": {
"lint": "phpcs -s src/ tests/",
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"php-http/discovery": true,
"silverstripe/vendor-plugin": true
}
}
}