forked from roots/bedrock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
123 lines (123 loc) · 3.42 KB
/
composer.json
File metadata and controls
123 lines (123 loc) · 3.42 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
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
{
"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": "scott.walkinshaw@gmail.com",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "Ben Word",
"email": "ben@benword.com",
"homepage": "https://github.com/retlehs"
}
],
"keywords": [
"bedrock", "composer", "roots", "wordpress-composer", "wordpress", "wp-composer", "wp-config", "wp"
],
"support": {
"issues": "https://github.com/roots/bedrock/issues",
"forum": "https://discourse.roots.io/category/bedrock"
},
"repositories": [
{
"name": "gravity",
"type": "composer",
"url": "https://composer.gravity.io",
"only": ["gravity/*"]
},
{
"name": "sterner-stuff/made-of-sterner-stuff",
"type": "vcs",
"url": "git@github.com:sterner-stuff/made-of-sterner-stuff.git"
},
{
"name": "sterner-stuff/kinsta-mu-plugins",
"type": "vcs",
"url": "git@github.com:sterner-stuff/kinsta-mu-plugin.git"
},
{
"name": "deliciousbrains",
"type": "composer",
"url": "https://composer.deliciousbrains.com"
},
{
"name": "client-core",
"type": "vcs",
"url": "git@github.com:ethanclevenger91/sterner-stuff-replace-me.git"
},
{
"name": "sterner-stuff-satispress",
"type": "composer",
"url": "https://stg.satispress.sternerstuff.dev/satispress"
},
{
"name": "wp-packages",
"type": "composer",
"url": "https://repo.wp-packages.org"
}
],
"require": {
"php": ">=8.3",
"composer/installers": "^2.2",
"oscarotero/env": "^2.1",
"roots/bedrock-autoloader": "^1.0.4",
"roots/bedrock-disallow-indexing": "^2.0",
"roots/wordpress": "^6.9.4",
"roots/wp-config": "^1.0.0",
"vlucas/phpdotenv": "^5.5",
"wp-theme/twentytwentyfive": "^1.0",
"sterner-stuff/made-of-sterner-stuff": "^11.5",
"kinsta/kinsta-mu-plugins": "dev-sterner-stuff",
"wp-plugin/mailgun": ">=2.1.1",
"wp-plugin/redirection": ">=5.5.0",
"wp-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",
"wp-plugin/stream": ">=4.0.2"
},
"require-dev": {
"laravel/pint": "^1.27",
"pestphp/pest": "^4.0",
"aaemnnosttv/wp-cli-dotenv-command": "^2.1",
"symfony/var-dumper": "^8.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true,
"pestphp/pest-plugin": true
},
"sort-packages": 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": {
"lint": "pint --test",
"lint:fix": "pint",
"test": "pest"
}
}