-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.38 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
{
"name" : "gwa/wp-bridge",
"type" : "library",
"description": "WpBridge is a simple bridge to mock all wordpress function.",
"keywords" : [
"wordpress",
"bridge",
"mock",
"mockery"
],
"license" : "MIT",
"homepage" : "https://github.com/gwa/WpBridge",
"support" : {
"issues" : "https://github.com/gwa/WpBridge/issues",
"source" : "https://github.com/gwa/WpBridge"
},
"authors" : [
{
"name" : "Great White Ark",
"homepage": "http://www.greatwhiteark.com",
"role" : "Developer"
}
],
"require": {
"php" : ">=5.4.0",
"mockery/mockery" : "^0.9"
},
"require-dev": {
"fabpot/php-cs-fixer" : "^1.11",
"phpunit/phpunit" : "^4.8"
},
"autoload": {
"psr-4": {
"Gwa\\Wordpress\\WpBridge\\" : "src/Gwa/"
}
},
"autoload-dev": {
"psr-4": {
"Gwa\\Wordpress\\WpBridge\\Tests\\" : "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master" : "2.2-dev"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true
}