forked from silvershop/silvershop-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.37 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
{
"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": "^4",
"silverstripe/asset-admin": "*",
"silverstripe/silverstripe-omnipay": "^3@dev",
"silvershop/silverstripe-listsorter": "^3@dev",
"silvershop/silverstripe-sqlquerylist": "^2@dev",
"symbiote/silverstripe-gridfieldextensions": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"guzzle/plugin-mock": "^3.1",
"omnipay/dummy": "^2.1",
"omnipay/paymentexpress": "^2.1"
},
"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.",
"silvershop/coloredvariations": "Select colours for variations",
"burnbright/silverstripe-shop-geocoding": "Geocoding support for addresses and visitors.",
"burnbright/silverstripe-shop-googleanalytics": "Records shop sales sales in google analytics.",
"markguinn/silverstripe-shop-ajax": "Basic ajax behaviours for add to cart, etc"
},
"extra": {
"snapshot": "https://raw.github.com/silvershop/silvershop-core/gh-pages/assets/screenshots/shipping%20estimate%20form.png",
"branch-alias": {
"dev-master": "3.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/master/docs/en"
},
"scripts": {
"lint": "phpcs -s src/ tests/"
},
"minimum-stability": "dev",
"prefer-stable": true
}