This repository has been archived by the owner on Mar 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
84 lines (84 loc) · 2.35 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
{
"name": "roots/bedrock",
"type": "project",
"license": "MIT",
"description": "A modern WordPress stack",
"homepage": "http://roots.io/wordpress-stack/",
"authors": [
{
"name": "Scott Walkinshaw",
"email": "[email protected]",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "Ben Word",
"email": "[email protected]",
"homepage": "https://github.com/retlehs"
}
],
"keywords": [
"wordpress", "stack", "capistrano", "composer", "vagrant", "wp"
],
"support": {
"issues": "https://github.com/roots/bedrock/issues",
"forum": "http://discourse.roots.io/category/bedrock"
},
"config": {
"preferred-install": "dist",
"generate-salts": true
},
"autoload": {
"psr-0": {"Roots\\Bedrock\\Installer": "scripts"}
},
"scripts": {
"post-root-package-install": ["Roots\\Bedrock\\Installer::addSalts"]
},
"repositories": [
{
"type": "composer",
"url": "http://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "arresteddevops/ado-plugin",
"version": "1.3",
"type": "wordpress-plugin",
"dist": {
"type": "zip",
"url": "https://github.com/arresteddevops/ado-plugin/archive/master.zip"
},
"require" : {
"composer/installers": "*"
}
}
}
],
"require": {
"php": ">=5.4",
"composer/installers": "v1.0.12",
"roots/soil": "3.1.0",
"vlucas/phpdotenv": "1.0.9",
"johnpbloch/wordpress": "4.1.1",
"arresteddevops/ado-plugin": "*",
"wpackagist-plugin/CryptX": "~3.2.8",
"wpackagist-plugin/co-authors-plus": "*",
"wpackagist-plugin/wp-biographia": "*",
"wpackagist-plugin/powerpress": "*",
"wpackagist-plugin/simple-local-avatars": "*",
"wpackagist-plugin/ewww-image-optimizer": "*",
"wpackagist-plugin/regenerate-thumbnails": "*",
"wpackagist-plugin/cmb2": "*",
"wpackagist-plugin/safe-redirect-manager": "*",
"wpackagist-plugin/custom-search-plugin": "*",
"wpackagist-plugin/regenerate-thumbnails": "*"
},
"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"
}
}