-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2.05 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
{
"name" : "devaloka/cfs-network-support",
"description" : "A Custom Field Suite add-on plugin that adds an ability to support Network (Multisite environment)",
"type" : "wordpress-plugin",
"keywords" : [
"wordpress",
"plugin",
"network",
"multisite",
"custom field",
"cfs"
],
"homepage" : "https://github.com/devaloka/cfs-network-support",
"license" : [
"GPL-2.0",
"GPL-3.0"
],
"minimum-stability": "dev",
"prefer-stable" : true,
"authors" : [
{
"name" : "Whizark",
"email" : "devaloka@whizark.com",
"homepage": "http://whizark.com",
"role" : "Developer"
}
],
"support" : {
"email" : "devaloka@whizark.com",
"issues": "https://github.com/devaloka/cfs-network-support/issues",
"wiki" : "https://github.com/devaloka/cfs-network-support/wiki",
"source": "https://github.com/devaloka/cfs-network-support"
},
"require" : {
"php" : ">=5.5.9",
"composer/installers": "~1.1"
},
"require-dev" : {
"squizlabs/php_codesniffer": "^2.9.1"
},
"suggest" : {
"mgibbs189/custom-field-suite": "Required, you should install it your way"
},
"scripts" : {
"test" : [
"vendor/bin/phpcs --colors"
],
"test-ci": [
"vendor/bin/phpcs --colors"
]
},
"archive" : {
"exclude": [
".gitignore",
".gitattributes",
".mailmap",
".editorconfig",
"package.json",
"npm-shrinkwrap.json",
".remarkignore",
".remarkrc",
"gulpfile.js",
"composer.json",
"phpcs.xml.dist",
".travis.yml"
]
},
"extra" : {
"installer-loader": "loader/50-cfs-network-support-loader.php"
}
}