-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.38 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
48
49
50
51
52
{
"name": "twohill/silverstripe-standard-base",
"description": "The base SilverStripe installation recipe with development tools. Uses Webpack for frontend and Docker for hosting",
"type": "silverstripe-recipe",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Al Twohill",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.1",
"silverstripe/recipe-plugin": "^1.3",
"silverstripe/recipe-cms": "4.4.5"
},
"require-dev": {
"phpunit/phpunit": "^7.3.1"
},
"extra": {
"project-files": [
".editorconfig",
".eslintrc",
".gitignore",
"example.env",
"docker-compose.yml",
"serve.config.js",
"webpack.config.js",
"package.json",
"app/*"
],
"expose": [
"app/client/dist"
],
"project-files-installed": [
"app/.htaccess",
"app/_config.php",
"app/_config/mysite.yml",
"app/src/Page.php",
"app/src/PageController.php"
],
"public-files-installed": [
".htaccess",
"index.php",
"install-frameworkmissing.html",
"install.php",
"web.config"
]
}
}