-
Notifications
You must be signed in to change notification settings - Fork 316
/
composer.json
81 lines (81 loc) · 2.07 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "philippheuer/wordpress-heroku",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure",
"homepage": "https://github.com/PhilippHeuer/wordpress-heroku",
"keywords": [
"bedrock", "wordpress", "stack", "composer", "heroku", "wp"
],
"config": {
"preferred-install": "dist",
"platform":{
"php": "7.0",
"ext-gettext": "1.0"
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0",
"ext-gettext": "*",
"composer/installers": "1.5.0",
"vlucas/phpdotenv": "2.4.0",
"wp-cli/wp-cli" : "1.4.1",
"oscarotero/env": "^1.1.0",
"koodimonni/composer-dropin-installer": "1.1.0",
"johnpbloch/wordpress": "4.9.2",
"roots/wp-password-bcrypt": "1.0.0",
"wpackagist-plugin/wordfence": "6.3.22",
"wpackagist-plugin/all-in-one-seo-pack": "2.4.4",
"wpackagist-plugin/nginx-helper": "1.9.10",
"wpackagist-plugin/sendgrid-email-delivery-simplified": "1.11.7",
"frc/batcache": "1.3-a2",
"wpackagist-plugin/redis-cache": "1.3.5",
"predis/predis": "1.1.1",
"humanmade/s3-uploads": "2.0.0-beta3",
"wpackagist-plugin/debug-bar": "0.9"
},
"require-dev": {
"heroku/heroku-buildpack-php": "*",
"squizlabs/php_codesniffer": "3.2.2"
},
"extra": {
"installer-paths": {
"vendor/dumpster/": [
"wpackagist-plugin/redis-cache",
"frc/batcache"
],
"web/app/mu-plugins/{$name}/": [
"wpackagist-plugin/wordfence",
"wpackagist-plugin/nginx-helper",
"wpackagist-plugin/sendgrid-email-delivery-simplified",
"humanmade/s3-uploads"
],
"web/app/plugins/{$name}/": [
"wpackagist-plugin/all-in-one-seo-pack",
"wpackagist-plugin/debug-bar"
],
"web/app/themes/{$name}/": [
"type:wordpress-theme"
]
},
"dropin-paths": {
"web/app": [
"package:wpackagist-plugin/redis-cache:includes/object-cache.php",
"package:frc/batcache:advanced-cache.php"
]
},
"wordpress-install-dir": "web/wp"
},
"scripts": {
"test": [
"vendor/bin/phpcs"
]
}
}