-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.44 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
{
"name": "builtnorth/wp-lando",
"description": "Starting point for WordPress projects using Lando",
"type": "project",
"authors": [
{
"name": "Built North",
"email": "[email protected]"
},
{
"name": "Dan Northern",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "path",
"url": "wp-content/plugins/*"
},
{
"type": "path",
"url": "wp-content/themes/*"
},
{
"type": "vcs",
"url": "[email protected]:builtnorth/wp-config.git"
}
],
"require": {
"composer/installers": "~1.0 || ~2.0",
"php": ">=8.0",
"vlucas/phpdotenv": "^5.6",
"oscarotero/env": "^2.1",
"roots/wordpress": "*",
"roots/wp-password-bcrypt": "^1.1",
"wpackagist-plugin/wordpress-importer": "dev-trunk",
"builtnorth/wp-config": "dev-main"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"roots/wordpress-core-installer": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"wp-content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "wp"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0"
}
}