forked from roots/bedrock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 1.82 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
65
66
67
68
69
70
71
72
73
{
"name": "roots/bedrock",
"type": "project",
"license": "MIT",
"description": "A modern WordPress stack",
"homepage": "http://roots.io/wordpress-stack/",
"authors": [
{
"name": "Scott Walkinshaw",
"email": "[email protected]",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "Ben Word",
"email": "[email protected]",
"homepage": "https://github.com/retlehs"
}
],
"keywords": [
"wordpress", "stack", "capistrano", "composer", "vagrant", "wp"
],
"support": {
"issues": "https://github.com/roots/bedrock/issues",
"forum": "http://discourse.roots.io/category/bedrock"
},
"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": "3.9.1",
"type": "webroot",
"dist": {
"type": "zip",
"url": "https://wordpress.org/wordpress-3.9.1.zip"
},
"require" : {
"fancyguy/webroot-installer": "1.1.0"
}
}
}
],
"require": {
"php": ">=5.3.2",
"wordpress/wordpress": "3.9.1",
"fancyguy/webroot-installer": "1.1.0",
"composer/installers": "v1.0.12",
"vlucas/phpdotenv": "~1.0.6"
},
"extra": {
"installer-paths": {
"web/app/plugins/{$name}/": ["type:wordpress-plugin"],
"web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"web/app/themes/{$name}/": ["type:wordpress-theme"]
},
"webroot-dir": "web/wp",
"webroot-package": "wordpress/wordpress"
}
}