-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
169 lines (169 loc) · 4.71 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "roots/bedrock",
"type": "project",
"license": "MIT",
"description": "A modern WordPress stack",
"homepage": "http://roots.io/wordpress-stack/",
"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": [
"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": "https://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "tommusrhodus/ebor-cpt",
"type": "wordpress-plugin",
"version": "0.0.2",
"dist": {
"type": "zip",
"url": "https://github.com/mitio/ebor-cpt/archive/master.zip"
},
"extra": {
"installer-name": "ebor-cpt-master"
}
}
},
{
"type": "package",
"package": {
"name": "tommusrhodus/Ebor-Shortcodes",
"type": "wordpress-plugin",
"version": "0.0.1",
"dist": {
"type": "zip",
"url": "https://github.com/tommusrhodus/Ebor-Shortcodes/archive/master.zip"
},
"extra": {
"installer-name": "Ebor-Shortcodes-master"
}
}
},
{
"type": "package",
"package": {
"name": "tommusrhodus/Ebor-Popular-Posts",
"type": "wordpress-plugin",
"version": "0.0.2",
"dist": {
"type": "zip",
"url": "https://github.com/mitio/Ebor-Popular-Posts/archive/master.zip"
},
"extra": {
"installer-name": "Ebor-Popular-Posts-master"
}
}
},
{
"type": "package",
"package": {
"name": "revslider",
"type": "wordpress-plugin",
"version": "3.0.95",
"source": {
"type": "git",
"url": "git@bitbucket.org:openmediabg/revslider.git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "zilla-likes",
"type": "wordpress-plugin",
"version": "1.0.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:openmediabg/zilla-likes.git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "tommusrhodus/kyte",
"type": "wordpress-theme",
"version": "1.1.19.3",
"source": {
"type": "git",
"url": "git@bitbucket.org:openmediabg/kyte.git",
"reference": "master"
},
"require": {
"tommusrhodus/ebor-cpt": "*@dev",
"tommusrhodus/Ebor-Shortcodes": "*@dev",
"tommusrhodus/Ebor-Popular-Posts": "*@dev",
"zilla-likes": "*@dev"
}
}
}
],
"require": {
"php": ">=5.4",
"johnpbloch/wordpress": "4.7.3",
"composer/installers": "v1.0.12",
"wp-cli/wp-cli": "*",
"wpackagist-theme/twentythirteen": "*",
"wpackagist-plugin/akismet": "*",
"wpackagist-plugin/backupwordpress": "*",
"wpackagist-plugin/better-wp-security": "*",
"wpackagist-plugin/column-shortcodes": "*",
"wpackagist-plugin/cyr3lat": "*",
"wpackagist-plugin/developer": "*",
"wpackagist-plugin/duplicate-post": "*",
"wpackagist-plugin/google-analytics-dashboard-for-wp": "*",
"wpackagist-plugin/google-analytics-for-wordpress": "*",
"wpackagist-plugin/jetpack": "*@stable",
"wpackagist-plugin/keyring": "*",
"wpackagist-plugin/keyring-social-importers": "*",
"wpackagist-plugin/mailchimp-for-wp": "*",
"wpackagist-plugin/shortcodes-ultimate": "*",
"wpackagist-plugin/verify-google-webmaster-tools": "*",
"wpackagist-plugin/w3-total-cache": "*",
"wpackagist-plugin/widget-shortcode": "*",
"wpackagist-plugin/wordpress-importer": "*",
"wpackagist-plugin/wp-super-cache": "*",
"wpackagist-plugin/wpremote": "*",
"vlucas/phpdotenv": "1.0.9",
"tommusrhodus/kyte": "1.1.19.3"
},
"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"
}
}