-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.58 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
{
"name" : "gwa/zero-module-cleanup",
"type" : "library",
"description": "A wordpress clean up module for the zero-library.",
"keywords" : [
"wordpress", "zero", "library", "zero-library", "clean", "clean up", "soil"
],
"license" : "MIT",
"homepage" : "https://github.com/gwa/zero-module-cleanup",
"support" : {
"issues" : "https://github.com/gwa/zero-module-cleanup/issues",
"source" : "https://github.com/gwa/zero-module-cleanup"
},
"authors" : [
{
"name" : "Daniel Bannert",
"email" : "[email protected]",
"homepage": "http://greatwhiteark.com/",
"role" : "Developer"
}
],
"require": {
"php" : ">=5.4",
"gwa/zero-library" : "^4.0 || ^5.0",
"gwa/wp-bridge" : "^2.0"
},
"require-dev": {
"fabpot/php-cs-fixer" : "^1.11",
"phpunit/phpunit" : "^4.8"
},
"autoload": {
"psr-4": {
"Gwa\\Wordpress\\Zero\\Module\\" : "src/Module/"
}
},
"autoload-dev": {
"psr-4": {
"Gwa\\Wordpress\\Zero\\Module\\Tests\\" : "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master" : "1.0-dev"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true
}