-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "dekodeinteraktiv/teft-base",
"type": "project",
"license": "MIT",
"description": "Dekode WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure",
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://packages.dekodes.no/"
},
{
"type": "composer",
"url": "https://wp-languages.github.io"
}
],
"require": {
"php": ">=7.0",
"composer/installers": "^1.4",
"vlucas/phpdotenv": "^2.0.1",
"johnpbloch/wordpress": "5.6.2",
"koodimonni-language/core-nb_no": "5.6.2",
"oscarotero/env": "^1.1.0",
"dekode/teft-theme": "^0.1.0"
},
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"web/app/plugins/{$name}/": [
"type:wordpress-plugin"
],
"web/app/themes/{$name}/": [
"type:wordpress-theme"
]
},
"dropin-paths": {
"web/app/languages/": [
"vendor:koodimonni-language"
],
"web/app/languages/plugins/": [
"vendor:koodimonni-plugin-language"
]
},
"wordpress-install-dir": "web/wp"
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\"",
"composer local-fix-no-folder-check"
],
"local-fix-no-folder-check": [
"bash post-install-scripts/local-webroot-fix.sh;"
],
"local-fix": [
"bash post-install-scripts/local-webroot-fix.sh --check-folder;"
]
},
"archive": {
"exclude": [
".editorconfig",
".gitignore",
"composer.json",
"composer.lock",
"LICENSE",
"phpcs.xml"
]
}
}