-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.65 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
{
"name": "press75/block-starter-app",
"authors": [
{
"name": "Press75",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "7.4.7"
},
"vendor-dir": "vendor",
"sort-packages": true,
"preferred-install": {
"*": "dist"
}
},
"description": "Starter setup for WordPress Install",
"type": "project",
"license": "GPLv2",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "[email protected]:moderntribe/coding-standards.git"
}
],
"require": {
"php": "^7.4",
"johnpbloch/wordpress-core": "5.8.2",
"johnpbloch/wordpress-core-installer": "2.0.*",
"monolog/monolog": "1.23.0",
"vlucas/phpdotenv": "^5.3",
"wpackagist-plugin/configure-smtp": "3.1",
"wpackagist-plugin/disable-emojis": "1.7.3",
"wpackagist-plugin/limit-login-attempts-reloaded": "2.23.2",
"wpackagist-plugin/redirection": "5.1.3",
"wpackagist-plugin/regenerate-thumbnails": "3.1.5",
"wpackagist-plugin/user-switching": "1.5.8",
"wpackagist-plugin/wordpress-seo": "17.5",
"wpackagist-plugin/amazon-s3-and-cloudfront": "2.5.5",
"ext-memcached": "*",
"ext-redis": "*",
"ext-imagick": "*",
"ext-bcmath": "*"
},
"require-dev": {
"moderntribe/coding-standards": "^1.0",
"wp-cli/wp-cli": "^2.5.0"
},
"extra": {
"wordpress-install-dir": "wp",
"installer-paths": {
"wp-content/mu-plugins/{$name}": [ "type:wordpress-muplugin"],
"wp-content/plugins/{$name}":[
"type:wordpress-plugin"
]
}
}
}