-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·117 lines (117 loc) · 2.89 KB
/
composer.json
File metadata and controls
executable file
·117 lines (117 loc) · 2.89 KB
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
{
"name": "benignware/wp-bootstrap-hooks",
"version": "1.1.22",
"type": "wordpress-plugin",
"license": "MIT",
"description": "A collection of action and filters for bootstrap based themes",
"homepage": "http://github.com/benignware/wp-bootstrap-hooks",
"authors": [
{
"name": "Rafael Nowrotek",
"email": "mail@benignware.com",
"homepage": "https://github.com/benignware"
}
],
"keywords": [
"wordpress-mlugin"
],
"support": {
"issues": "https://github.com/benignware/wp-bootstrap-hooks/issues"
},
"repositories": [{
"type": "composer",
"url": "https://wpackagist.org"
}, {
"type":"package",
"package": {
"name": "wptrt/theme-unit-test",
"version": "master",
"source": {
"url": "https://github.com/WPTRT/theme-unit-test.git",
"type": "git",
"reference": "master"
}
}
}, {
"type": "package",
"package": {
"name": "benignware/benignware-connect",
"version": "v1.0.6",
"type": "wordpress-plugin",
"source": {
"type": "git",
"url": "https://github.com/benignware/wp-benignware-connect.git",
"reference": "v1.0.6"
}
}
}, {
"type": "package",
"package": {
"name": "benignware/agnosticon",
"version": "v0.0.10",
"type": "wordpress-plugin",
"source": {
"type": "git",
"url": "https://github.com/benignware/wp-agnosticon",
"reference": "v0.0.10"
}
}
}, {
"type": "package",
"package": {
"name": "benignware/menu-plus",
"version": "v1.1.8",
"type": "wordpress-plugin",
"source": {
"type": "git",
"url": "https://github.com/benignware/wp-menu-plus",
"reference": "v1.1.8"
}
}
}, {
"type": "package",
"package": {
"name": "benignware/mediacontrols",
"version": "v0.1.5",
"type": "wordpress-plugin",
"source": {
"type": "git",
"url": "https://github.com/benignware/wp-mediacontrols",
"reference": "v0.1.5"
}
}
}],
"require": {
"php": ">=5.3.0",
"composer/installers": "~1.0"
},
"require-dev": {
"benignware/benignware-connect": ">=1.0.6",
"benignware/agnosticon": ">=0.0.10",
"benignware/menu-plus": ">=1.1.8",
"benignware/mediacontrols": ">=0.1.5",
"wpackagist-plugin/wordpress-importer": "^0.6.4",
"wpackagist-plugin/gutenberg": "^17.9.0",
"wptrt/theme-unit-test": "dev-master"
},
"extra": {
"webroot-dir": "wp-core",
"webroot-package": "wordpress",
"installer-paths": {
"wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"wp-content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
}
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}