-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
102 lines (102 loc) · 2.61 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
{
"name": "benignware/wp-mediacontrols",
"version": "0.1.10",
"type": "wordpress-plugin",
"license": "MIT",
"description": "Consistent media controls across browsers",
"homepage": "http://github.com/benignware-labs/wp-mediacontrols",
"authors": [
{
"name": "Rafael Nowrotek",
"email": "[email protected]",
"homepage": "https://github.com/benignware"
}
],
"keywords": [
"wordpress-plugin"
],
"support": {
"issues": "https://github.com/benignware/wp-mediacontrols/issues"
},
"repositories": [{
"type": "composer",
"url": "https://wpackagist.org"
}, {
"type": "vcs",
"url": "https://github.com/benignware/benignware-installer"
}, {
"type": "package",
"package": {
"name": "benignware/benignware-connect",
"version": "v1.0.4",
"type": "wordpress-plugin",
"source": {
"type": "git",
"url": "https://github.com/benignware/wp-benignware-connect.git",
"reference": "v1.0.4"
}
}
}, {
"type": "composer",
"url": "https://wpackagist.org"
}, {
"type": "package",
"package": {
"name": "benignware/agnosticon",
"version": "v0.0.17",
"type": "wordpress-plugin",
"source": {
"type": "git",
"url": "https://github.com/benignware/wp-agnosticon.git",
"reference": "v0.0.17"
}
}
}, {
"type":"package",
"package": {
"name": "wptrt/theme-unit-test",
"version": "master",
"source": {
"url": "https://github.com/WPTRT/theme-unit-test.git",
"type": "git",
"reference": "master"
}
}
}],
"require": {
"php": ">=5.3.0",
"composer/installers": "~1.0"
},
"require-dev": {
"wptrt/theme-unit-test": "dev-master",
"benignware/benignware-connect": ">=1.0.4",
"benignware/agnosticon": ">=0.0.17",
"wpackagist-plugin/icon-fonts": ">=1.0.0",
"wpackagist-plugin/instant-images": "^6.1.2",
"wpackagist-plugin/video-embed-thumbnail-generator": ">=4.10.2",
"wpackagist-theme/twentyseventeen": ">=2.9",
"wpackagist-theme/twentytwentyone": "*",
"wpackagist-theme/twentytwentytwo": "*",
"wpackagist-theme/twentytwentythree": "*"
},
"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
}
}
}