-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.39 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
{
"name": "ukmadlz/wordpress-on-bluemix",
"description": "Install Wordpress on IBM Bluemix with Compose for MySQL",
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "Mike Elsmore",
"email": "[email protected]"
}
],
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "wordpress/wordpress",
"type": "webroot",
"version": "4.7.1",
"source": {
"type": "git",
"url": "https://github.com/WordPress/WordPress.git",
"reference": "4.7.1"
},
"require": {
"fancyguy/webroot-installer": "1.0.0"
}
}
}
],
"scripts": {
"post-install-cmd": "php .bp-config/setup-wordpress.php",
"post-update-cmd": "php .bp-config/setup-wordpress.php"
},
"require": {
"php": "5.5.*",
"wordpress/wordpress": "4.7.*",
"wpackagist-plugin/captcha":">=3.9",
"wpackagist-theme/hueman":"*",
"wpackagist-plugin/secure-db-connection": "*"
},
"extra": {
"webroot-dir": "content",
"webroot-package": "wordpress/wordpress"
}
}