-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
38 lines (38 loc) · 1.12 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
{
"name": "webbuilders-group/silverstripe-frontendgridfield",
"description": "Wraps gridfield adding support for using it on the front-end.",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "gridfield", "frontend"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ed Chipman",
"homepage": "https://webbuildersgroup.com",
"role": "Developer"
}
],
"require": {
"silverstripe/framework": "~4.3|~5.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"expose": [
"css",
"images",
"javascript"
]
},
"support": {
"issues": "https://github.com/webbuilders-group/silverstripe-frontendgridfield/issues"
},
"suggest": {
"webbuilders-group/silverstripe-responsivegridfield": "Responsive addon for frontendgridfield that makes a SilverStripe GridField work better on various screensizes."
},
"autoload": {
"psr-4": {
"WebbuildersGroup\\FrontEndGridField\\": "src/"
}
}
}