-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
64 lines (64 loc) · 1.9 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
{
"name": "shimoju/wordpress-heroku",
"description": "WordPress on Heroku",
"license": "GPL-2.0",
"authors": [
{
"name": "Hiroshi Shimoju",
"email": "hiroshi.shimoju@gmail.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "wordpress/wordpress-ja",
"type": "webroot",
"version": "4.8.1",
"dist": {
"type": "zip",
"url": "https://ja.wordpress.org/wordpress-4.8.1-ja.zip"
},
"require": {
"fancyguy/webroot-installer": "~1.1"
}
}
}
],
"require": {
"php": "7.1.12",
"ext-apcu": "*",
"ext-gd": "*",
"ext-mbstring": "*",
"wordpress/wordpress-ja": "*",
"wp-cli/wp-cli": "~1.2",
"wpackagist-plugin/001-prime-strategy-translate-accelerator": "*",
"wpackagist-plugin/amazon-s3-and-cloudfront": "*",
"wpackagist-plugin/amazon-web-services": "*",
"wpackagist-plugin/autoptimize": "*",
"wpackagist-plugin/cloudflare": "*",
"wpackagist-plugin/sendgrid-email-delivery-simplified": "*",
"wpackagist-plugin/siteguard": "*",
"wpackagist-plugin/wordpress-seo": "*"
},
"extra": {
"webroot-dir": "public",
"webroot-package": "wordpress/wordpress-ja",
"installer-paths": {
"public/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"public/wp-content/themes/{$name}/": ["type:wordpress-theme"]
}
},
"scripts": {
"post-install-cmd": [
"sh bin/post-install"
],
"post-update-cmd": [
"sh bin/post-install"
]
}
}