-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathcomposer.json
executable file
·67 lines (63 loc) · 1.86 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
{
"name": "seravo/wordpress",
"type": "project",
"license": "MIT",
"description": "Seravo WordPress project template",
"homepage": "https://seravo.com/",
"keywords": [
"wordpress", "composer", "wp", "vagrant", "docker", "wp-palvelu", "seravo"
],
"config": {
"preferred-install": "dist"
},
"autoload": {
"psr-0": {"WordPress\\Installer": "scripts"}
},
"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.2",
"johnpbloch/wordpress-core-installer": "^2.0",
"johnpbloch/wordpress-core": "^5.0",
"composer/installers": "^1.0",
"koodimonni/composer-dropin-installer": "^1.0",
"roots/bedrock-autoloader": "^1.0",
"vlucas/phpdotenv": "^5.0",
"koodimonni-language/fi": "*",
"koodimonni-language/sv_se": "*",
"seravo/seravo-plugin": "*",
"wpackagist-plugin/native-lazyload": "*",
"wpackagist-plugin/google-site-kit": "*",
"wpackagist-theme/twentynineteen": "*"
},
"extra": {
"installer-paths": {
"htdocs/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"htdocs/wp-content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"htdocs/wp-content/themes/{$name}": ["type:wordpress-theme"]
},
"dropin-paths": {
"htdocs/wp-content/languages/": ["vendor:koodimonni-language"],
"htdocs/wp-content/languages/plugins/": ["vendor:koodimonni-plugin-language"],
"htdocs/wp-content/languages/themes/": ["vendor:koodimonni-theme-language"],
".": ["type:seravo-wordpress-dropin"]
},
"wordpress-install-dir": "htdocs/wordpress"
}
}