-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 987 Bytes
/
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
{
"name": "earthwytch/silverstripe-easyread",
"description": "A simple SilverStripe module to create and display html Easy Read content.",
"type": "silverstripe-vendormodule",
"license": "MIT",
"support": {
"email": "[email protected]",
"issues": "https://github.com/earthwytch/silverstripe-easyread/issues"
},
"require": {
"silverstripe/cms": "^4.0",
"silverstripe/framework": "^4.0",
"silverstripe/admin": "^1.0",
"undefinedoffset/sortablegridfield": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"Earthwytch\\EasyRead\\": "src/"
}
},
"extra": {
"expose": [
"client/dist"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}