-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.13 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
{
"name": "distilleries/wordpress",
"description": "Wordpress default structure",
"license": "MIT",
"version": "1.0.2",
"authors": [
{
"name": "Maxime Francois",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "http://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "wordpress",
"version": "4.1",
"type": "webroot",
"dist": {
"type": "zip",
"url": "https://github.com/WordPress/WordPress/archive/4.1.zip"
},
"require" : {
"fancyguy/webroot-installer": "1.1.0"
}
}
}
],
"require": {
"php": ">=5.3.0",
"wordpress": "4.1",
"fancyguy/webroot-installer": "1.1.0",
"composer/installers": "v1.0.6",
"wp-cli/wp-cli": "v0.13.0",
"vlucas/phpdotenv": "1.0.2"
},
"extra": {
"installer-paths": {
"app/plugins/{$name}/": ["type:wordpress-plugin"],
"app/my-plugins/{$name}/": ["type:wordpress-myplugin"]
},
"webroot-dir": "wp",
"webroot-package": "wordpress",
"minimum-stability": "stable"
}
}