-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.32 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
{
"name": "dft/silverstripe-modeladminplus",
"description": "Adds some extra features to a standard ModelAdmin field",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/Dean-Forest-Tech/silverstripe-modeladminplus",
"keywords": [
"silverstripe",
"admin",
"ModelAdmin",
"DataObject"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Dean Forest Tech",
"homepage": "https://dean-forest-tech.uk"
}
],
"support": {
"issues": "https://github.com/Dean-Forest-Tech/silverstripe-modeladminplus/issues"
},
"require": {
"silverstripe/framework": "^4.6 || ^5.2",
"silverstripe/admin": "^1 || ^2",
"symbiote/silverstripe-gridfieldextensions": "^3 || ^4",
"colymba/gridfield-bulk-editing-tools": "^3 || ^4",
"tractorcow/silverstripe-autocomplete": "^4 || ^5"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"DFT\\SilverStripe\\ModelAdminPlus\\": "src/",
"DFT\\SilverStripe\\ModelAdminPlus\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "phpcs -s src/ tests/"
},
"extra": {
"expose": [
"client/dist"
]
},
"minimum-stability": "dev"
}