-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 loc) · 1.16 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
{
"name": "bigfork/silverstripe-recipe",
"type": "silverstripe-recipe",
"description": "Bigfork’s SilverStripe CMS recipe",
"homepage": "https://www.bigfork.co.uk",
"license": "BSD-3-Clause",
"require": {
"bigfork/htmleditorsrcset": "^2",
"feejin/silverstripe-securitytemplates": "^3",
"heyday/silverstripe-responsive-images": "^2",
"kinglozzer/bfgoogleanalytics": "^2",
"kinglozzer/metatitle": "^2",
"silverstripe/assets": "^1",
"silverstripe/config": "^1",
"silverstripe/cms": "^4",
"silverstripe/errorpage": "^1",
"silverstripe/framework": "^4",
"silverstripe/googlesitemaps": "^1",
"silverstripe/recipe-plugin": "^1",
"symbiote/silverstripe-gridfieldextensions": "^3"
},
"require-dev": {
"phpunit/phpunit": "^5"
},
"extra": {
"expose": [
"app/css",
"app/images",
"themes/default/css",
"themes/default/images",
"themes/default/js"
]
},
"autoload": {
"files": ["app/src/bootstrap.php"],
"psr-4": {
"App\\": "app/src",
"Bigfork\\": "util/Bigfork"
}
},
"scripts": {
"post-create-project-cmd": "Bigfork\\Installer\\Install::postCreateProject"
},
"minimum-stability": "dev",
"prefer-stable": true
}