-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
131 lines (131 loc) · 4.34 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "ministryofjustice/intranet",
"type": "project",
"description": "MoJ Intranet, used by Ministry of Justice and agencies",
"config": {
"preferred-install": "dist",
"allow-plugins": {
"johnpbloch/wordpress-core-installer": true,
"koodimonni/composer-dropin-installer": true,
"composer/installers": true,
"php-http/discovery": true,
"roots/wordpress-core-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"
},
{
"type": "vcs",
"url": "https://github.com/ministryofjustice/like-button-for-wordpress"
},
{
"type": "vcs",
"url": "https://github.com/ministryofjustice/notify-for-wordpress"
},
{
"type": "vcs",
"url": "https://github.com/ministryofjustice/php-markdown-extra"
}
],
"require": {
"php": ">=8.2",
"composer/installers": "^1.0.0",
"vlucas/phpdotenv": "^5.5",
"oscarotero/env": "^2.1",
"roots/bedrock-autoloader": "^1.0",
"roots/bedrock-disallow-indexing": "^2.0",
"roots/wordpress": "^6.4",
"roots/wp-password-bcrypt": "*",
"roots/wp-config": "^1.0",
"wpackagist-plugin/classic-editor": "*",
"wpackagist-plugin/totalpoll-lite": "*",
"wpackagist-plugin/cms-tree-page-view": "*",
"wpackagist-plugin/co-authors-plus": "*",
"wpackagist-plugin/ewww-image-optimizer": "*",
"wpackagist-plugin/wp-document-revisions": "^3.5.0",
"wpackagist-plugin/simple-301-redirects":"2.0.9",
"acf/advanced-custom-fields-pro": "*",
"ministryofjustice/wp-rewrite-media-to-s3": "dev-php8-code-update",
"ministryofjustice/like-button-for-wordpress": "dev-main",
"ministryofjustice/notify-for-wordpress": "dev-main",
"ministryofjustice/php-markdown-extra": "dev-main",
"ministryofjustice/wp-moj-components": "*",
"ministryofjustice/wp-moj-elasticsearch": "*",
"wpackagist-plugin/elasticpress": "*",
"ext-zlib": "*",
"ext-posix": "*",
"sentry/sdk": "^3.1",
"php-http/guzzle7-adapter": "^1.0",
"alphagov/notifications-php-client": "^5.0",
"aws/aws-sdk-php": "^3.133"
},
"require-dev": {
"wpackagist-plugin/query-monitor": "*",
"wpackagist-plugin/debug-bar": "*",
"wpackagist-plugin/debug-bar-elasticpress": "*",
"squizlabs/php_codesniffer": "^3.0.2"
},
"extra": {
"installer-paths": {
"public/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin",
"wpackagist-plugin/ewww-image-optimizer",
"ministryofjustice/php-markdown-extra"
],
"public/app/plugins/{$name}/": [
"type:wordpress-plugin"
],
"public/app/themes/{$name}/": [
"type:wordpress-theme"
]
},
"dropin-paths": {
"public/app/languages/": [
"vendor:koodimonni-language"
],
"public/app/languages/plugins/": [
"vendor:koodimonni-plugin-language"
],
"public/app/languages/themes/": [
"vendor:koodimonni-theme-language"
]
},
"wordpress-install-dir": "public/wp"
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"test": [
"vendor/bin/phpcs -d memory_limit=256M"
],
"test-fix": [
"vendor/bin/phpcbf -d memory_limit=256M"
]
},
"authors": [
{
"name": "Ministry of Justice",
"email": "[email protected]"
},
{
"name": "Damien Wilson",
"homepage": "https://github.com/wilson1000"
},
{
"name": "Davey Brown",
"homepage": "https://github.com/EarthlingDavey"
}
]
}