-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.dev.json
executable file
·59 lines (59 loc) · 1.47 KB
/
composer.dev.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
55
56
57
58
59
{
"name": "zaita/sdlt",
"type": "silverstripe-recipe",
"description": "Zaita SDLT",
"license": "BSD-3-Clause",
"repositories": [
{
"type": "path",
"url": "/opt/sdlt-theme"
},
{
"type": "path",
"url": "/opt/sdlt-framework"
}
],
"require": {
"php": ">=8.1",
"silverstripe/recipe-plugin": "^1.2",
"zaita/sdlt-framework": "*",
"zaita/sdlt-theme": "*",
"silverstripe/graphql": "^3.5.1"
},
"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
}
}
}