-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
40 lines (40 loc) · 1.1 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
{
"name": "dft/silverstripe-gallery",
"description": "A Silverstripe image gallery allowing multi image upload and automatic generation of thumbnail gallery with popups",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/Dean-Forest-Tech/silverstripe-gallery",
"keywords": [
"silverstripe",
"gallery",
"thumbnails",
"lightbox",
"modal"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Dean Forest Tech",
"homepage": "https://dean-forest-tech.uk"
}
],
"support": {
"issues": "http://github.com/Dean-Forest-Tech/silverstripe-gallery/issues"
},
"require": {
"silverstripe/cms": "^4 || ^5",
"bummzack/sortablefile": "^2",
"dft/silverstripe-modeladminplus": "^1.2 || ^2",
"silvershop/silverstripe-hasonefield": "^3.0 || ^4.0"
},
"extra": {
"expose": [
"client/dist",
"node_modules"
]
},
"autoload": {
"psr-4": {
"DFT\\SilverStripe\\Gallery\\": "src/"
}
}
}