-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 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
53
54
{
"name": "musikcorps/webseite",
"description": "Musikcorps Niedernberg e.V. Website",
"authors": [
{
"name": "Johannes Lauinger",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {"WordPress\\Installer": "script"}
},
"scripts": {
"post-install-cmd": ["WordPress\\Installer::symlinkWPContent"],
"post-update-cmd": ["WordPress\\Installer::symlinkWPContent"]
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://wp-languages.github.io"
}
],
"require": {
"php": ">=7.0",
"composer/installers": "v1.0.12",
"vlucas/phpdotenv": "1.0.9",
"oscarotero/env": "^1.0",
"johnpbloch/wordpress": "*",
"wp-cli/wp-cli" : "~0.22",
"koodimonni-language/de_de": "*",
"wpackagist-plugin/google-calendar-events": "3.1.9",
"wpackagist-plugin/lazyest-gallery": ">=1.1.19.1"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"extra": {
"installer-paths": {
"html/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"html/wp-content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"html/wp-content/themes/{$name}": ["type:wordpress-theme"]
},
"dropin-paths": {
"html/wp-content/languages/": ["vendor:koodimonni-language"]
},
"wordpress-install-dir": "html/wp"
}
}