-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
51 lines (43 loc) · 1.23 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": "silvershop/shopfront",
"description": "Provides a 'shopfront' page type that can be used to display products or product categories.",
"license": "BSD-2-Clause",
"type": "silverstripe-vendormodule",
"homepage": "http://silvershop.github.io/",
"minimum-stability": "dev",
"support": {
"source": "https://github.com/silvershop/silvershop-shopfront",
"issues": "https://github.com/silvershop/silvershop-shopfront/issues"
},
"require": {
"silvershop/core": "^3",
"unclecheese/display-logic": "^2",
"symbiote/silverstripe-gridfieldextensions": "^3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"SilverShop\\ShopFront\\": "src/"
}
},
"keywords": [
"silverstripe",
"shop",
"shopfront"
],
"authors": [
{
"name": "madmatt",
"homepage": "https://github.com/madmatt"
},
{
"name": "SilverShop Contributors",
"homepage": "https://github.com/silvershop/silvershop-shopfront/graphs/contributors"
}
],
"scripts": {
"lint": "vendor/bin/phpcs src/"
}
}