-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.23 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
{
"repositories": [{
"type": "composer",
"url": "http://wpackagist.org"
}, {
"type": "package",
"package": {
"name": "wordpress",
"type": "webroot",
"version": "5.6.0",
"dist": {
"type": "zip",
"url": "https://github.com/WordPress/WordPress/archive/5.6.0.zip"
},
"require": {
"fancyguy/webroot-installer": "1.0.0"
}
}
}],
"require": {
"php": ">=7.3.0",
"wordpress": "5.6.0",
"fancyguy/webroot-installer": "1.0.0",
"vlucas/phpdotenv": "^2.4"
},
"extra": {
"webroot-dir": "public/wp",
"webroot-package": "wordpress",
"installer-paths": {
"public/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"public/wp-content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"public/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
}
},
"require-dev": {
"heroku/heroku-buildpack-php": "dev-master"
},
"config": {
"secure-http": false
}
}