-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.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
{
"name": "rbdwllr/dusty",
"description": "A WordPress starter repo which uses Composer and Docker.",
"authors": [
{
"name": "Rob Waller",
"email": "[email protected]"
}
],
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org"
}
],
"require": {
"php": ">=7.4.0",
"johnpbloch/wordpress": "^5.5",
"wpackagist-plugin/wordpress-seo": "^15.0",
"wpackagist-plugin/advanced-custom-fields": "^5.9",
"wpackagist-theme/twentytwenty": "^1.5",
"vlucas/phpdotenv": "^5.2",
"rbdwllr/wordpress-salts-generator": "^0.2",
"rbdwllr/atlantic-city": "^0.3"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"szepeviktor/phpstan-wordpress": "^0.7"
},
"extra": {
"installer-paths": {
"public/wp-content/mu-plugins/{$name}": ["type:wordpress-muplugin"],
"public/wp-content/plugins/{$name}": ["type:wordpress-plugin"],
"public/wp-content/themes/{$name}": ["type:wordpress-theme"]
},
"wordpress-install-dir": "public/wordpress"
},
"scripts": {
"make-environment": [
"cp .env.example .env",
"php vendor/bin/wpsalts dotenv --clean >> .env"
]
}
}