-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 2.33 KB
/
composer.json
File metadata and controls
96 lines (96 loc) · 2.33 KB
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
{
"name": "bernardhanna/matrixstack",
"type": "project",
"license": "MIT",
"description": "A modern WordPress stack",
"homepage": "https://github.com/bernardhanna/matrixstack",
"authors": [
{
"name": "Bernard Hanna",
"email": "bernard@matrixinternet.ie",
"homepage": "https://github.com/bernardhanna"
}
],
"keywords": [
"bedrock",
"roots",
"wordpress",
"stack",
"composer",
"vagrant",
"wp"
],
"support": {
"issues": "https://github.com/bernardhanna/matrixstack/issues"
},
"config": {
"allow-plugins": true,
"preferred-install": "dist",
"generate-salts": true,
"secure-http": true
},
"autoload": {
"psr-4": {
"Roots\\Bedrock\\": "scripts/Roots/Bedrock"
}
},
"scripts": {
"post-root-package-install": [
"Roots\\Bedrock\\Installer::addSalts"
]
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"minimum-stability": "dev"
},
{
"type": "composer",
"url": "https://wp-languages.github.io"
}
],
"require": {
"php": ">=7.2",
"composer/installers": "^1.10.0",
"wp-cli/wp-cli-bundle": "*",
"vlucas/phpdotenv": "^5.3",
"oscarotero/env": "^2.1",
"roots/wp-config": "^1.0",
"johnpbloch/wordpress": "6.0.2",
"johnpbloch/wordpress-core-installer": "^2.0",
"koodimonni/composer-dropin-installer": "dev-master",
"koodimonni-language/en_gb": "*",
"wpackagist-plugin/disable-media-pages": "*",
"wpackagist-plugin/wordpress-seo": "*",
"wpackagist-plugin/so-clean-up-wp-seo": "*",
"wpackagist-plugin/metronet-reorder-posts": "*",
"wpackagist-plugin/duplicate-post": "*",
"wpackagist-plugin/prevent-browser-caching": "*",
"wpackagist-plugin/updraftplus": "*",
"devgeniem/wp-sanitize-accented-uploads": "*"
},
"require-dev": {
"rarst/wps": "*",
"wpackagist-plugin/query-monitor": "*"
},
"extra": {
"dropin-paths": {
"content/languages/": [
"vendor:koodimonni-language"
]
},
"installer-paths": {
"content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "wp"
}
}