-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
77 lines (77 loc) · 2.35 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
{
"name": "ragtagteam/ragtag-wordpress-heroku",
"description": "Boilerplate for deploying WordPress on Heroku",
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.2.5",
"ext-gettext": "1.0"
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.2.5",
"ext-gettext": "*",
"ext-imagick": "*",
"composer/installers": "^1.5.0",
"frc/batcache": "^1.3-a2",
"wpackagist-plugin/amazon-s3-and-cloudfront": "^2.1.0",
"johnpbloch/wordpress": "^5.0.1",
"koodimonni/composer-dropin-installer": "^1.1.0",
"oscarotero/env": "^1.1.0",
"predis/predis": "^1.1.1",
"roots/wp-password-bcrypt": "^1.0.0",
"vlucas/phpdotenv": "^2.4.0",
"wp-cli/wp-cli": "^1.4.1",
"wpackagist-plugin/akismet": "^4.0",
"wpackagist-plugin/disable-comments": "^1.7",
"wpackagist-plugin/jetpack": "^6.0",
"wpackagist-plugin/minimum-viable-sharing-meta": "^0.0.4",
"wpackagist-plugin/nginx-helper": "^1.9.10",
"wpackagist-plugin/redis-cache": "^1.3.5",
"wpackagist-plugin/updraftplus": "^1.14.11",
"wpackagist-plugin/wordfence": "^6.3.22",
"wpackagist-plugin/wordpress-importer": "^0.6.4",
"wpackagist-plugin/wordpress-seo": "^7.6",
"wpackagist-plugin/wp-ses": "^0.8",
"wpackagist-plugin/classic-editor": "^1.4",
"wpackagist-theme/twentytwenty": "^1.0",
"wpackagist-theme/twentynineteen": "^1.0",
"wpackagist-plugin/ga-google-analytics": "20191109"
},
"require-dev": {
"heroku/heroku-buildpack-php": "*"
},
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin",
"wpackagist-plugin/wordfence",
"wpackagist-plugin/nginx-helper",
"wpackagist-plugin/wp-ses",
"wpackagist-plugin/amazon-s3-and-cloudfront",
"wpackagist-plugin/wordpress-importer",
"wpackagist-plugin/classic-editor"
],
"web/app/themes/{$name}/": [
"type:wordpress-theme"
],
"web/app/plugins/{$name}/": [
"type:wordpress-plugin"
]
},
"dropin-paths": {
"web/app": [
"package:wpackagist-plugin/redis-cache:includes/object-cache.php",
"package:frc/batcache:advanced-cache.php"
]
},
"wordpress-install-dir": "web/wp"
}
}