-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.93 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.93 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
58
59
60
61
62
63
64
65
66
67
{
"name": "pagopress/pagopress",
"description": "Pagopress is Pagodabox + WordPress + Roots Theme",
"require": {
"php": ">=5.6",
"composer/installers": "~1.0.12",
"vlucas/phpdotenv": "^2.0.1",
"oscarotero/env": "^1.0",
"fancyguy/webroot-installer": "1.0.0",
"johnpbloch/wordpress": "4.7",
"roots/sage": "8.5.*",
"roots/wp-password-bcrypt": "1.0.0"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "wordpress",
"type": "webroot",
"version": "4.7.0",
"dist": {
"type": "git",
"url": "https://github.com/WordPress/WordPress.git",
"reference": "4.7.0"
},
"require": {
"fancyguy/webroot-installer": "1.0.0"
}
}
},
{
"type": "package",
"package": {
"name": "roots/sage",
"type": "wordpress-theme",
"version": "8.5.0",
"dist": {
"type": "zip",
"url": "https://github.com/roots/sage/archive/8.5.0.zip"
},
"require": {
"php": ">=5.3.0",
"composer/installers": "~1.0"
}
}
}
],
"extra": {
"installer-paths": {
"app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"app/plugins/{$name}/": ["type:wordpress-plugin"],
"app/themes/{$name}/": ["type:wordpress-theme"]
},
"webroot-dir": "wp",
"webroot-package": "wordpress",
"wordpress-install-dir": "wp"
},
"scripts": {
"test": [
"vendor/bin/phpcs"
]
}
}