-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.55 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
{
"name" : "gwa/zero-library",
"type" : "library",
"description": "A WordPress development framework.",
"keywords" : ["roots", "wordpress", "composer", "wp", "twig", "zero", "library", "zero-library"],
"license" : "MIT",
"homepage" : "https://github.com/gwa/zero-library",
"support" : {
"issues": "https://github.com/gwa/zero-library/issues",
"source": "https://github.com/gwa/zero-library"
},
"authors" : [
{
"name" : "Great White Ark",
"homepage": "http://www.greatwhiteark.com"
}
],
"require": {
"php" : ">=5.4",
"composer/installers" : "^1.0",
"jjgrainger/wp-custom-post-type-class" : "^1.4",
"timber/timber" : "^0.22.6",
"webdevstudios/cmb2" : "^2.1",
"gwa/wp-bridge" : "^2.1",
"roots/soil" : "~3.6"
},
"require-dev": {
"fabpot/php-cs-fixer" : "^1.11",
"phpunit/phpunit" : "^4.8"
},
"autoload": {
"psr-4": {
"Gwa\\Wordpress\\Zero\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gwa\\Wordpress\\Zero\\Test\\" : "tests/"
},
"classmap": [
"wp-content/plugins/soil"
]
},
"minimum-stability" : "dev",
"prefer-stable" : true
}