This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
83 lines (83 loc) · 2.19 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
{
"name": "ministryofjustice/wp-template",
"type": "project",
"description": "A starter project for WordPress in MOJ using docker",
"config": {
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true,
"koodimonni/composer-dropin-installer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://composer.wp.dsd.io"
},
{
"type": "composer",
"url": "https://wp-languages.github.io"
}
],
"require": {
"php": ">=7.1",
"composer/installers": "^1.4",
"vlucas/phpdotenv": "^2.0.1",
"johnpbloch/wordpress": "*",
"koodimonni-language/core-en_gb": "*",
"oscarotero/env": "^1.1.0",
"roots/wp-password-bcrypt": "*",
"ministryofjustice/wp-rewrite-media-to-s3": "*",
"acf/advanced-custom-fields-pro": "*",
"wpackagist-plugin/wp-browser-update": "*",
"wpackagist-plugin/safe-redirect-manager": "*",
"wpackagist-plugin/classic-editor": "*",
"ministryofjustice/wp-user-roles": "*",
"ministryofjustice/wp-moj-components": "*",
"ministryofjustice/cookie-compliance-for-wordpress": "*",
"ministryofjustice/wp-gov-uk-notify": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0.2",
"phpmd/phpmd": "@stable"
},
"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 \"file_exists('.env') || copy('.env.example', '.env');\""
],
"test": [
"vendor/bin/phpcs"
]
}
}