-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
61 lines (43 loc) · 1.3 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
{
"name": "yourname/yourproject",
"description": "Example composer.json file for cap deploy",
"authors": [
{
"name": "RichardTape",
"email": "[email protected]",
"homepage": "http://www.richardtape.com/"
}
],
"minimum-stability": "dev",
"repositories": [
{
"type": "composer",
"url": "http://wpackagist.org"
},
{
"type": "composer",
"url": "http://satis.richardtape.com"
}
],
"require": {
"php": ">=5.3.0",
"johnpbloch/wordpress": "dev-master",
"wpackagist-plugin/wordpress-seo": "1.*",
"wpackagist-plugin/wp-mail-smtp": "0.9.5",
"wpackagist-plugin/google-analytics-for-wordpress": "5.*",
"wpackagist-plugin/wp-rainbow-hilite": "dev-trunk",
"wpackagist-plugin/akismet": "3.0.*",
"wpackagist-plugin/custom-contact-forms": "6.3.*",
"wpackagist-plugin/memcached": "2.0.2",
"wpackagist-plugin/remove-query-strings-from-static-resources": "1.*",
"mbcx9rvt/fix-wp-get-attachment-url-https": "0.1"
},
"extra": {
"wordpress-install-dir": "wp",
"installer-paths" : {
"content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"content/plugins/{$name}/": ["type:wordpress-plugin"],
"content/themes/{$name}/": ["type:wordpress-theme"]
}
}
}