This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
94 lines (94 loc) · 3.2 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "roots/bedrock",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with modern development tools, 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", "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": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=5.6",
"composer/installers": "~1.0.12",
"vlucas/phpdotenv": "^2.0.1",
"wpackagist-plugin/cyr3lat": "~3.5",
"wpackagist-plugin/google-analytics-dashboard-for-wp": "~4.9",
"wpackagist-plugin/ssl-insecure-content-fixer": "~2.2",
"wpackagist-plugin/wp-super-cache": "~1.4",
"wpackagist-plugin/w3-total-cache": "~0.9",
"oscarotero/env": "^1.0",
"roots/wp-password-bcrypt": "1.0.0",
"wpackagist-plugin/better-wp-security": "~6.0",
"wpackagist-plugin/black-studio-tinymce-widget": "~2.2",
"wpackagist-plugin/contact-form-7": "~4.0",
"wpackagist-plugin/posts-to-posts": "~1.6",
"wpackagist-plugin/relevanssi": "~3.5",
"wpackagist-plugin/simple-page-ordering": "2.2.4",
"wpackagist-plugin/wordpress-seo": "~4.0",
"wp-sync-db/wp-sync-db": "dev-master",
"wp-sync-db/wp-sync-db-media-files": "dev-master",
"wpackagist-plugin/regenerate-thumbnails": "~2.2",
"wpackagist-plugin/glue-for-yoast-seo-amp": "~0.3",
"wpackagist-plugin/fb-instant-articles": "~3.3",
"wpackagist-plugin/amp": "~0.4",
"wpackagist-plugin/ewww-image-optimizer": "~3.2",
"wpackagist-plugin/disqus-comment-system": "~2.8",
"wpackagist-plugin/simple-share-buttons-adder": "~6.3",
"wpackagist-plugin/autoptimize": "~2.1",
"wpackagist-plugin/jquery-pin-it-button-for-images": "~2.2",
"johnpbloch/wordpress": "^4.7",
"wpackagist-plugin/accelerated-mobile-pages": "~0.9"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5.1",
"wpackagist-plugin/theme-check": "*",
"wpackagist-plugin/wordpress-importer": "dev-master",
"wpackagist-plugin/query-monitor": "~2.8",
"wpackagist-plugin/debug-bar-console": "dev-trunk",
"wpackagist-plugin/rewrite-rules-inspector": "dev-trunk",
"wpackagist-plugin/p3-profiler": "dev-trunk",
"wpackagist-plugin/wpdbspringclean": "dev-trunk",
"wpackagist-plugin/regenerate-thumbnails": "~2.2.6"
},
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin",
"wpackagist-plugin/simple-page-ordering"
],
"web/app/plugins/{$name}/": ["type:wordpress-plugin"],
"web/app/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "web/wp"
},
"scripts": {
"test": [
"vendor/bin/phpcs"
]
}
}