forked from roots/bedrock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
120 lines (120 loc) · 3.33 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
{
"name": "sterner-stuff/bedrock",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with Composer, easier configuration, and an improved folder structure",
"homepage": "https://roots.io/bedrock/",
"authors": [
{
"name": "Scott Walkinshaw",
"email": "[email protected]",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "Ben Word",
"email": "[email protected]",
"homepage": "https://github.com/retlehs"
}
],
"keywords": [
"bedrock",
"composer",
"roots",
"wordpress",
"wp",
"wp-config"
],
"support": {
"issues": "https://github.com/roots/bedrock/issues",
"forum": "https://discourse.roots.io/category/bedrock"
},
"repositories": {
"wpackagist": {
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
"sterner-stuff/made-of-sterner-stuff": {
"type": "vcs",
"url": "[email protected]:sterner-stuff/made-of-sterner-stuff.git"
},
"sterner-stuff/kinsta-mu-plugins": {
"type": "vcs",
"url": "[email protected]:sterner-stuff/kinsta-mu-plugin.git"
},
"deliciousbrains": {
"type": "composer",
"url": "https://composer.deliciousbrains.com"
},
"client-core": {
"type": "vcs",
"url": "[email protected]:ethanclevenger91/sterner-stuff-replace-me.git"
},
"sterner-stuff-satispress": {
"type": "composer",
"url": "https://stg.satispress.sternerstuff.dev/satispress"
}
},
"require": {
"php": ">=8.0",
"composer/installers": "^2.3",
"vlucas/phpdotenv": "^5.6.1",
"oscarotero/env": "^2.1",
"roots/bedrock-autoloader": "^1.0.4",
"roots/bedrock-disallow-indexing": "^2.0",
"roots/wordpress": "^6.6.2",
"roots/wp-config": "^1.0.0",
"roots/wp-password-bcrypt": "^1.2.0",
"wpackagist-theme/twentytwentyfour": "^1.2",
"sterner-stuff/made-of-sterner-stuff": "^11.5",
"kinsta/kinsta-mu-plugins": "dev-sterner-stuff",
"wpackagist-plugin/mailgun": ">=2.1.1",
"wpackagist-plugin/redirection": ">=5.5.0",
"wpackagist-plugin/tiny-compress-images": ">=3.4.4",
"ethanclevenger91/sterner-stuff-replace-me": ">=1.1",
"deliciousbrains-plugin/wp-migrate-db-pro": ">=2.6.13",
"deliciousbrains-plugin/wp-offload-media": ">=3.2.8",
"wp-media/wp-rocket": ">=3.17.0.1",
"wp-media/wp-rocket-cli": ">=1.3",
"wpackagist-plugin/stream": ">=4.0.2",
"wpackagist-plugin/zero-spam": ">=5.5.7"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10.3",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "^6.4.11",
"aaemnnosttv/wp-cli-dotenv-command": "^2.1"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"web/app/plugins/{$name}/": [
"type:wordpress-plugin"
],
"web/app/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "web/wp"
},
"scripts": {
"test": [
"phpcs"
]
}
}