-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
53 lines (53 loc) · 1.49 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
{
"name": "getdave/smashingmag-wordpress-composer",
"description": "An example WordPress project using Composer",
"authors": [
{
"name": "David",
"email": "[email protected]"
}
],
"require": {
"wpackagist/advanced-custom-fields": "4.2.*",
"wpackagist/posts-to-posts": "1.6.*",
"wpackagist/members": "0.2.*",
"wordpress": "3.7.1",
"fancyguy/webroot-installer": "1.0.0"
},
"require-dev": {
"wpackagist/debug-bar": "0.8.*"
},
"repositories":[
{
"type":"composer",
"url":"http://wpackagist.org"
},
{
"type" : "package",
"package": {
"name" : "wordpress",
"type" : "webroot",
"version": "3.7.1",
"dist" : {
"url" : "http://wordpress.org/wordpress-3.7.1.zip",
"type": "zip"
},
"source" : {
"url" : "https://github.com/WordPress/WordPress",
"type" : "git",
"reference": "3.7.1"
},
"require" : {
"fancyguy/webroot-installer": "1.0.0"
}
}
}
],
"extra": {
"installer-paths": {
"content/plugins/{$name}/": ["type:wordpress-plugin"]
},
"webroot-dir": "wp",
"webroot-package": "wordpress"
}
}