-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 1.86 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
{
"name": "desaiuditd/wp-skeleton",
"type": "project",
"license": "GPLv3",
"description": "A skeleton repo as a starter for WordPress websites using Bedrock.",
"homepage": "https://github.com/desaiuditd/wp-skeleton",
"authors": [
{
"name": "Udit Desai",
"email": "desaiuditd@gmail.com",
"homepage": "https://github.com/desaiuditd"
}
],
"keywords": [
"bedrock",
"composer",
"roots",
"wordpress",
"wp",
"wp-config",
"skeleton"
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=7.3",
"composer/installers": "^1.7",
"oscarotero/env": "^1.2.0",
"roots/wordpress": "5.4.0",
"roots/wp-config": "1.0.0",
"roots/wp-password-bcrypt": "1.0.0",
"rtcamp/nginx-helper": "2.2.1",
"vlucas/phpdotenv": "^3.4.0",
"wpackagist-plugin/wp-redis": "1.0.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"johnbillion/query-monitor": "3.5.2",
"johnbillion/user-switching": "1.5.4",
"phpmd/phpmd": "^2.7",
"roave/security-advisories": "dev-master",
"wp-coding-standards/wpcs": "^2.1",
"wpackagist-plugin/advanced-cron-manager": "2.3.10"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"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": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"test": [
"phpcs"
]
}
}