-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 2.68 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 2.68 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
{
"name": "sorentech/hebrides",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure, forked from roots/bedrock and modified for internal use by Soren LLC",
"homepage": "https://soren.tech",
"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"
},
{
"name": "Alex Floyd Marshall",
"email": "apmarshall@soren.tech",
"homepage": "https://soren.tech"
}
],
"keywords": [
"bedrock",
"roots",
"wordpress",
"stack",
"composer",
"vagrant",
"wp"
],
"support": {
"issues": "https://github.com/roots/bedrock/issues",
"forum": "https://discourse.roots.io/category/bedrock"
},
"config": {
"preferred-install": "dist"
},
"repositories": {
"0": {
"type": "composer",
"url": "https://wpackagist.org"
}
},
"require": {
"php": ">=5.6",
"composer/installers": "~1.12.0",
"vlucas/phpdotenv": "^4.1.8",
"oscarotero/env": "^1.1",
"johnpbloch/wordpress": "^5.2",
"roots/wp-password-bcrypt": "1.1.0",
"wpackagist-plugin/goodbye-captcha": "^3.1",
"wpackagist-plugin/two-factor-authentication": "^1.2",
"wpackagist-plugin/updraftplus": "^1.13",
"wpackagist-plugin/wp-security-audit-log": "^4.1",
"wpackagist-plugin/cloudflare": "^4.0",
"wpackagist-plugin/jch-optimize": "^4.0",
"humanmade/s3-uploads": "^3.0",
"wpackagist-plugin/shortpixel-image-optimiser": "^5.0",
"wpackagist-plugin/broken-link-checker": "^2.0",
"wpackagist-plugin/dashboard-widgets-suite": "^3.0",
"wpackagist-plugin/google-analytics-dashboard-for-wp": "^8.11",
"wpackagist-plugin/sparkpost": "^3.0",
"wpackagist-plugin/wordpress-seo": "^21.0",
"wpackagist-plugin/epoch": "^1.0",
"wpackagist-plugin/postmatic-social-commenting": "^1.1",
"wpackagist-plugin/so-widgets-bundle": "^1.8"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5.0",
"wpackagist-plugin/vulnerability-alerts": "^2.0",
"wpackagist-plugin/developer": "^1.2"
},
"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": [
"vendor/bin/phpcs --ignore=web/wp/,vendor/ -n -s ."
]
}
}