-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.68 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
{
"repositories": [
{
"type":"composer",
"url":"https://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "wordpress/wordpress",
"type": "webroot",
"version": "5.3.2",
"dist": {
"type": "zip",
"url": "https://github.com/WordPress/WordPress/archive/5.3.2.zip"
},
"require": {
"fancyguy/webroot-installer": "^1.0"
}
}
}
],
"require": {
"wordpress/wordpress": "5.3.2",
"wpackagist-plugin/wordpress-seo":"13.1",
"wpackagist-plugin/advanced-custom-fields":"5.8.7",
"wpackagist-plugin/acf-content-analysis-for-yoast-seo":"2.3.0",
"wpackagist-plugin/webp-express":"0.17.3",
"wpackagist-plugin/custom-post-type-ui":"1.7.3",
"wpackagist-plugin/navz-photo-gallery":"1.6.5",
"wpackagist-plugin/taxonomy-terms-order":"1.5.7.1",
"wpackagist-plugin/heartbeat-control":"2.0",
"wpackagist-plugin/post-types-order":"1.9.4.2",
"wpackagist-theme/twentytwenty":"*"
},
"extra": {
"webroot-dir": "core",
"webroot-package": "wordpress/wordpress",
"installer-paths": {
"content/plugins/{$name}/": ["type:wordpress-plugin"],
"content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"content/themes/{$name}/": ["type:wordpress-theme"]
}
},
"scripts": {
"post-install-cmd": [
"mkdir -p content/languages/",
"if [ -d 'core/wp-content/languages' ]; then cp -R core/wp-content/languages/* content/languages/;fi",
"mkdir -p content/uploads/"
],
"post-update-cmd": [
"if [ -d 'core/wp-content/languages' ]; then cp -R core/wp-content/languages/* content/languages/;fi"
]
}
}