-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 907 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 907 Bytes
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
{
"repositories": [
{
"type": "package",
"package": {
"name": "wordpress/wordpress",
"type": "webroot",
"version": "4.7.2",
"dist": {
"type": "zip",
"url": "https://github.com/WordPress/WordPress/archive/4.7.2.zip"
},
"require" : {
"fancyguy/webroot-installer": "1.1.0"
}
}
},
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"fancyguy/webroot-installer": "1.1.0",
"wordpress/wordpress": "*"
},
"require-dev": {},
"extra": {
"webroot-dir": "wp-core",
"webroot-package": "wordpress/wordpress",
"installer-paths": {
"wp-content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"wp-content/themes/{$name}/": ["type:wordpress-theme"]
}
}
}