forked from Seravo/wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·83 lines (79 loc) · 2.2 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
78
79
80
81
82
83
{
"name": "seravo/wordpress",
"type": "project",
"license": "MIT",
"description": "Seravo WordPress instance template",
"homepage": "https://seravo.com/",
"authors": [
{
"name": "Antti Kuosmanen",
"email": "[email protected]",
"homepage": "https://github.com/anttiviljami"
},
{
"name": "Otto Kekäläinen",
"email": "[email protected]",
"homepage": "https://github.com/ottok"
},
{
"name": "Onni Hakala",
"email": "[email protected]",
"homepage": "https://github.com/onnimonni"
}
],
"keywords": [
"wordpress", "composer", "wp", "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": "^1.0",
"johnpbloch/wordpress-core": "^5.0",
"composer/installers": "^1.0",
"koodimonni/composer-dropin-installer": "^1.0",
"vlucas/phpdotenv": "^2.4",
"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"
}
}