This repository has been archived by the owner on May 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
106 lines (106 loc) · 2.71 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "roots/bedrock",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure",
"homepage": "https://roots.io/bedrock/",
"authors": [
{
"name": "Scott Walkinshaw",
"email": "scott.walkinshaw@gmail.com",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "Ben Word",
"email": "ben@benword.com",
"homepage": "https://github.com/retlehs"
}
],
"keywords": [
"bedrock",
"roots",
"wordpress",
"stack",
"composer",
"vagrant",
"wp"
],
"support": {
"issues": "https://github.com/roots/bedrock/issues",
"forum": "https://discourse.roots.io/category/bedrock"
},
"config": {
"preferred-install": "dist"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://wp-languages.github.io"
},
{
"type": "composer",
"url": "https://composer.wp.dsd.io"
}
],
"require": {
"php": ">=7.1",
"composer/installers": "^1.4",
"vlucas/phpdotenv": "^2.0.1",
"johnpbloch/wordpress": "*",
"koodimonni-language/core-en_gb": "*",
"oscarotero/env": "^1.2",
"roots/wp-password-bcrypt": "*",
"acf/advanced-custom-fields-pro": "*",
"wpackagist-plugin/intuitive-custom-post-order": "*",
"ministryofjustice/wp-rewrite-media-to-s3": "*",
"wpackagist-plugin/classic-editor": "*",
"wpackagist-plugin/fast-user-switching": "*",
"ministryofjustice/wp-user-roles": "*",
"ministryofjustice/cookie-compliance-for-wordpress": "*",
"ministryofjustice/wp-moj-components": "*",
"relevanssi/relevanssi-premium": "*",
"wpackagist-plugin/wp-analytify":"*",
"wpackagist-plugin/analytify-analytics-dashboard-widget":"*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5.5"
},
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin",
"ministryofjustice/wp-user-roles"
],
"web/app/plugins/{$name}/": [
"type:wordpress-plugin"
],
"web/app/themes/{$name}/": [
"type:wordpress-theme"
]
},
"dropin-paths": {
"web/app/languages/": [
"vendor:koodimonni-language"
],
"web/app/languages/plugins/": [
"vendor:koodimonni-plugin-language"
],
"web/app/languages/themes/": [
"vendor:koodimonni-theme-language"
]
},
"wordpress-install-dir": "web/wp"
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"test": [
"vendor/bin/phpcs"
]
}
}