-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
63 lines (60 loc) · 2.22 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
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ibmjstart/wp-bluemix-objectstorage.git"
},
{
"type": "vcs",
"url": "https://github.com/ibmjstart/wp-bluemix-config.git"
},
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "https://github.com/php-opencloud/openstack.git"
}
],
"scripts": {
"pre-install-cmd" : [
"curl https://api.github.com/rate_limit"
],
"post-install-cmd" : [
"mv vendor/ibmjstart/wp-bluemix-config/mu-plugins htdocs/wp-content/mu-plugins",
"mv vendor/ibmjstart/wp-bluemix-config/.user.ini htdocs",
"mv vendor/ibmjstart/wp-bluemix-config/wp-config.php htdocs",
"mv vendor htdocs/vendor",
"mv lib/.htaccess htdocs"
],
"post-update-cmd" : [
"mv vendor/ibmjstart/wp-bluemix-config/mu-plugins htdocs/wp-content/mu-plugins",
"mv vendor/ibmjstart/wp-bluemix-config/.user.ini htdocs",
"mv vendor/ibmjstart/wp-bluemix-config/wp-config.php htdocs",
"mv vendor htdocs/vendor",
"mv lib/.htaccess htdocs"
]
},
"require": {
"ext-gd" : "*",
"johnpbloch/wordpress" : "*",
"ibmjstart/wp-bluemix-objectstorage" : "~2.1.1",
"ibmjstart/wp-bluemix-config" : "dev-master",
"wpackagist-plugin/stops-core-theme-and-plugin-updates": "*",
"wpackagist-plugin/sendgrid-email-delivery-simplified": "*",
"wpackagist-plugin/wp-super-cache" : "*",
"wpackagist-theme/twentyfourteen" : "*",
"wpackagist-theme/twentyfifteen" : "*",
"wpackagist-theme/twentysixteen" : "*"
},
"extra": {
"wordpress-install-dir": "htdocs",
"installer-paths": {
"htdocs/wp-content/plugins/{$name}/" : ["type:wordpress-plugin"],
"htdocs/wp-content/themes/{$name}/" : ["type:wordpress-theme"]
}
},
"minimum-stability" : "dev",
"prefer-stable": true
}