This repository was archived by the owner on Dec 31, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.79 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.79 KB
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
{
"name": "rcdfund.org",
"type": "project",
"license": "MIT",
"description": "A WordPress stack for the RCD Fund",
"homepage": "http://rcdfund.org/",
"authors": [
{
"name": "Fredrik Broman, Synack AB",
"email": "fredrik@synack.se",
"homepage": "https://github.com/synackdigital"
}
],
"support": {
"issues": "https://github.com/synackdigital/rcdfund.org/issues"
},
"config": {
"preferred-install": "dist",
"generate-salts": true
},
"autoload": {
"psr-0": {"Bedrock\\Installer": "scripts"}
},
"scripts": {
"post-root-package-install": ["Bedrock\\Installer::addSalts"]
},
"repositories": [
{
"type": "composer",
"url": "http://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "wordpress/wordpress",
"version": "4.0",
"type": "webroot",
"dist": {
"type": "zip",
"url": "https://wordpress.org/wordpress-4.0.zip"
},
"require" : {
"fancyguy/webroot-installer": "1.1.0"
}
}
}
],
"require": {
"php": ">=5.3.2",
"wordpress/wordpress": "4.0",
"fancyguy/webroot-installer": "1.1.0",
"composer/installers": "v1.0.12",
"vlucas/phpdotenv": "~1.0.6",
"wpackagist-plugin/advanced-custom-fields": "4.3.8",
"wpackagist-plugin/iframe": "2.9",
"wpackagist-plugin/mailchimp": "1.4.2",
"wpackagist-plugin/infinite-scroll": "2.6.2",
"wpackagist-plugin/redirection": "2.3.10",
"wpackagist-plugin/alpine-photo-tile-for-instagram": "1.2.7.3"
},
"extra": {
"installer-paths": {
"web/app/plugins/{$name}/": ["type:wordpress-plugin"],
"web/app/themes/{$name}/": ["type:wordpress-theme"]
},
"webroot-dir": "web/wp",
"webroot-package": "wordpress/wordpress"
}
}