-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.18 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
{
"name": "jellygnite/silverstripe-elements",
"description": "Useful elemental building blocks.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"CMS"
],
"license": "BSD-3-Clause",
"require": {
"silverstripe/framework": "^5.0",
"silverstripe/admin": "^2.0",
"dnadesign/silverstripe-elemental": "^5.0",
"unclecheese/display-logic": "^3.0",
"jellygnite/silverstripe-elemental-style": "^5.0",
"symbiote/silverstripe-gridfieldextensions": "^4.0",
"bummzack/sortablefile": "^2.2",
"sheadawson/silverstripe-linkable": "^5.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/jellygnite/silverstripe-linkable"
}
],
"suggest": {
"colymba/gridfield-bulk-editing-tools": "Allows bulk upload of files for FileList"
},
"autoload": {
"psr-4": {
"Jellygnite\\Elements\\": "src/"
}
},
"extra": {
"expose": [
"client/dist"
],
"branch-alias": {
"dev-master": "5.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}