-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
80 lines (80 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
{
"name" : "devaloka/network-wp-query",
"description" : "A WordPress plugin that provides Network-wide WP Query for Multisite environment",
"type" : "wordpress-plugin",
"keywords" : [
"wordpress",
"plugin",
"network",
"multisite",
"wp_query"
],
"homepage" : "https://github.com/devaloka/network-wp-query",
"license" : [
"GPL-2.0",
"GPL-3.0"
],
"minimum-stability": "dev",
"prefer-stable" : true,
"authors" : [
{
"name" : "Eric Lewis",
"email" : "[email protected]",
"homepage": "http://www.ericandrewlewis.com"
},
{
"name" : "Miguel Peixe",
"email" : "[email protected]",
"homepage": "http://codigourbano.org"
},
{
"name" : "Whizark",
"email" : "[email protected]",
"homepage": "http://whizark.com",
"role" : "Developer"
}
],
"support" : {
"email" : "[email protected]",
"issues": "https://github.com/devaloka/network-wp-query/issues",
"wiki" : "https://github.com/devaloka/network-wp-query/wiki",
"source": "https://github.com/devaloka/network-wp-query"
},
"require" : {
"php" : ">=5.5.9",
"composer/installers" : "~1.2",
"roave/security-advisories": "dev-master"
},
"require-dev" : {
"squizlabs/php_codesniffer": "^2.9.1"
},
"scripts" : {
"test" : [
"vendor/bin/phpcs --colors"
],
"test-travis": [
"vendor/bin/phpcs --colors"
]
},
"archive" : {
"exclude": [
".gitignore",
".gitattributes",
".mailmap",
".editorconfig",
".conventional-changelog-lintrc",
".cz-config.json",
"package.json",
"npm-shrinkwrap.json",
".remarkignore",
".remarkrc",
"gulpfile.js",
"composer.json",
"phpcs.xml.dist",
".travis.yml"
]
},
"extra" : {
"installer-loader": "loader/50-network-wp-query-loader.php"
}
}