-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
88 lines (88 loc) · 2.88 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
{
"name": "roots/bedrock",
"type": "project",
"license": "MIT",
"description": "A modern WordPress stack",
"homepage": "https://roots.io/bedrock/",
"authors": [
{
"name": "Scott Walkinshaw",
"email": "[email protected]",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "Ben Word",
"email": "[email protected]",
"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.5",
"composer/installers": "~1.0.12",
"vlucas/phpdotenv": "^2.0.1",
"johnpbloch/wordpress": "^4.7",
"oscarotero/env": "^1.0",
"roots/wp-password-bcrypt": "1.0.0",
"wpackagist-plugin/buddypress": "^2.5",
"wpackagist-plugin/duplicator": "^1.1",
"wpackagist-plugin/timber-library": "^1.1",
"timber/timber": "^1.1",
"wpackagist-plugin/siteorigin-panels": "^2.4",
"wpackagist-plugin/so-widgets-bundle": "^1.6",
"wpackagist-plugin/disqus-comment-system": "^2.85",
"wpackagist-plugin/jetpack": "^4.2",
"wpackagist-plugin/google-calendar-events": "^3.1",
"wpackagist-plugin/wp-all-import": "^3.3",
"wpackagist-plugin/tinymce-advanced": "^4.4",
"wpackagist-plugin/wp-editor": "^1.2.6.2",
"wpackagist-plugin/import-users-from-csv-with-meta": "^1.9",
"wpackagist-plugin/hide-admin-bar-from-non-admins": "^1.0",
"wpackagist-plugin/google-analytics-for-wordpress": "^7.0",
"wpackagist-plugin/wordpress-seo": "^7.0",
"wpackagist-plugin/user-role-editor": "^4.27",
"wpackagist-plugin/sparkpost": "^3.0",
"wpackagist-plugin/download-monitor": "^1.9",
"wpackagist-plugin/wordfence": "^6.3",
"wpackagist-plugin/scripts-n-styles": "^3.4",
"wpackagist-plugin/visual-form-builder": "^2.9.3",
"wpackagist-plugin/ninja-forms": "^3.1.6",
"wpackagist-plugin/formidable": "^2.03.10",
"wpackagist-plugin/form-maker": "^1.11.7",
"wpackagist-plugin/wpforms-lite": "^1.3.8",
"wpackagist-plugin/pdf-embedder": "^3.0.1",
"wpackagist-plugin/horizontal-scrolling-announcement": "^8.7"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5.1",
"wpackagist-plugin/theme-check": "20160523.1"
},
"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-install-cmd": [
"cd ./web/app/themes/cnh && composer install && npm install"
]
}
}