forked from Zaita/SDLT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·49 lines (49 loc) · 1.29 KB
/
composer.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.29 KB
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
{
"name": "zaita/sdlt",
"type": "silverstripe-recipe",
"description": "Zaita SDLT",
"license": "BSD-3-Clause",
"require": {
"php": ">=8.1",
"silverstripe/recipe-plugin": "^1.2",
"zaita/sdlt-framework": "5.0.3",
"zaita/sdlt-theme": "5.0.0",
"silverstripe/graphql": "^3.8.2"
},
"extra": {
"project-files-installed": [
"app/.htaccess",
"app/_config.php",
"app/_config/mimevalidator.yml",
"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"
]
},
"prefer-stable": true,
"minimum-stability": "dev",
"scripts": {
"post-update-cmd": [
"composer vendor-expose"
],
"post-install-cmd": [
"composer vendor-expose"
],
"build": "sudo chown -R www-data ./public/assets && sudo -u www-data ./vendor/bin/sake /dev/build flush=all",
"bundle": "cd /vagrant/themes/sdlt/ && yarn run build"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"silverstripe/recipe-plugin": true
}
}
}