-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·65 lines (52 loc) · 1.23 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
{
"name": "briteweb/bw-skeleton",
"homepage": "https://github.com/briteweb/bw-skeleton",
"version": "1.0.0",
"authors": [
{
"name": "#BRITEWEB",
"email": "[email protected]",
"homepage": "http://briteweb.com"
}
],
"config": {
"process-timeout": 4000
},
"autoload": {
"psr-0": {
"BWSkeleton": "src/php"
}
},
"extra": {
"wordpress-install-dir": "wp",
"installer-paths": {
"content/plugins/{$name}": ["type:wordpress-plugin"],
"content/themes/{$name}": ["type:wordpress-theme"]
}
},
"repositories": [
{
"type":"composer",
"url":"http://wpackagist.org"
},
{
"type": "vcs",
"url": "[email protected]:BRITEWEB/bw-skeleton-plugin.git"
},
{
"type": "vcs",
"url": "[email protected]:BRITEWEB/bw-skeleton-theme.git"
}
],
"require": {
"php": ">=5.3",
"johnpbloch/wordpress": "~3.8",
"briteweb/bw-skeleton-theme": "~1.0",
"briteweb/bw-skeleton-plugin": "~1.0",
"wpackagist-plugin/wordpress-seo": "~1.5",
"wpackagist-plugin/advanced-custom-fields": "~4.3",
"wpackagist-plugin/wordpress-importer": "~0.6",
"wpackagist-plugin/ajax-thumbnail-rebuild": "~1.09",
"wpackagist-plugin/wp-super-cache": "~1.4"
}
}