-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.34 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
53
54
{
"name": "cambis/frankenphp-silverstripe-demo",
"description": "FrankenPHP Silverstripe",
"version": "0.0.1",
"authors": [
{
"name": "Cameron Bryers"
}
],
"require": {
"php": "^8.1",
"silverstripe/login-forms": "^5.2",
"silverstripe/recipe-cms": "^5.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.9"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/src"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"ergebnis/composer-normalize": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
},
"process-timeout": 600
},
"extra": {
"expose": [
"themes/app/dist"
],
"project-files-installed": [
".htaccess",
"app/.htaccess",
"app/_config/mimevalidator.yml",
"app/_config/mysite.yml",
"app/src/Page.php",
"app/src/PageController.php"
],
"public-files-installed": [
".htaccess",
"index.php",
"web.config"
]
}
}