-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.38 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.38 KB
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
{
"name": "wplib/wplib-box",
"description": "WPLib website template",
"license": "GPL-2.0+",
"type": "project",
"authors": [
{
"name": "The WPLib Team",
"email": "team@wplib.org",
"homepage": "http://wplib.org",
"role": "WPLib Library Author"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "git",
"url": "https://github.com/wplib/wplib.git"
}
],
"require": {
"composer/installers": "dev-master",
"wpackagist-theme/twentysixteen": "*",
"wplib/wplib": "0.13.1",
"johnpbloch/wordpress": "4.5",
"wpackagist-plugin/wp-redis": "0.2.2",
"wpackagist-plugin/query-monitor": "2.10.0",
"wpackagist-plugin/helpful-information": "1.0.2"
},
"extra": {
"wordpress-install-dir": "www/wp",
"installer-paths": {
"www/content/mu-plugins/{$name}": [
"type:wordpress-library",
"type:wordpress-muplugin",
"wpackagist-plugin/wp-redis"
],
"www/content/plugins/{$name}": [
"type:wordpress-plugin"
],
"www/content/themes/{$name}": [
"type:wordpress-theme"
]
}
},
"config": {
"vendor-dir": "www/vendor",
"secure-http": false
},
"scripts": {
"post-install-cmd": "php scripts/host/after-composer.php",
"post-update-cmd": "php scripts/host/after-composer.php"
}
}