-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.41 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/multisite-directory-resolver",
"type" : "library",
"description": "Adds filters that correct directory paths in a Wordpress multisite install with the WordPress installation in a custom subfolder.",
"keywords" : ["composer", "wordpress", "multisite"],
"license" : "MIT",
"homepage" : "https://github.com/gwa/WpMultisiteDirectoryResolver",
"support" : {
"issues": "https://github.com/gwa/WpMultisiteDirectoryResolver/issues",
"source": "https://github.com/gwa/WpMultisiteDirectoryResolver"
},
"authors" : [
{
"name" : "Great White Ark",
"homepage": "http://www.greatwhiteark.com"
}
],
"require": {
"php" : ">=5.4.0",
"gwa/wp-bridge" : "~2.0"
},
"require-dev": {
"fabpot/php-cs-fixer" : "~1.11",
"phpunit/phpunit" : "~4.8",
"satooshi/php-coveralls" : "~0.6.1"
},
"autoload": {
"psr-4": {
"Gwa\\Wordpress\\" : "src/Gwa"
}
},
"autoload-dev": {
"psr-4": {
"Gwa\\Wordpress\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master" : "2.2.0-dev"
}
},
"suggest": {
},
"minimum-stability" : "dev",
"prefer-stable" : true
}