-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
73 lines (72 loc) · 1.53 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": "Se7enSky/se7ensky-template-wordpress",
"authors": [
{
"name": "Ivan Kravchenko",
"email": "[email protected]"
},
{
"name": "SE7ENSKY studio",
"email": "[email protected]"
}
],
"require": {
"ext-memcached": "*",
"ext-ftp": "*",
"ext-gd": "*",
"wordpress/wordpress": "4.1",
"wpackagist-theme/twentyfourteen": "*",
"wpackagist-plugin/root-relative-urls": "*",
"wpackagist-plugin/cyr2lat": "*",
"Se7enSky/wp-remotefs": "*",
"wpackagist-plugin/query-monitor": "*"
},
"extra": {
"webroot-dir": "app/wp",
"webroot-package": "wordpress/wordpress",
"installer-paths": {
"app/plugins/{$name}/": ["type:wordpress-plugin"],
"app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"app/themes/{$name}/": ["type:wordpress-theme"]
}
},
"require-dev": {
"heroku/heroku-buildpack-php": "*"
},
"repositories": [
{
"type": "composer",
"url": "http://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "wordpress/wordpress",
"type": "webroot",
"version": "4.1",
"dist": {
"type": "zip",
"url": "https://github.com/WordPress/WordPress/archive/4.1.zip"
},
"require": {
"fancyguy/webroot-installer": "~1.1"
}
}
},
{
"type": "package",
"package": {
"name": "Se7enSky/wp-remotefs",
"type": "wordpress-plugin",
"version": "1.5.3",
"dist": {
"type": "zip",
"url": "https://github.com/Se7enSky/wp-remotefs/archive/master.zip"
},
"require": {
"fancyguy/webroot-installer": "~1.1"
}
}
}
]
}