-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.37 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" : "wecodemore/termlimit",
"description" : "WordPress plugin to limit the amount of (custom) taxonomy taxons on a per post type basis.",
"keywords" : [ "wordpress", "plugin", "post", "term", "category", "taxonomy", "tag" ],
"type" : "wordpress-plugin",
"homepage" : "https://github.com/wecodemore/wcm-termlimit",
"license" : "MIT",
"authors" : [
{
"name" : "Franz Josef Kaiser",
"email" : "wecodemore@gmail.com",
"homepage" : "http://unserkaiser.com",
"role" : "Lead Developer"
}
],
"support" : {
"issues" : "https://github.com/wecodemore/wcm-termlimit/issues",
"source" : "https://github.com/wecodemore/wcm-termlimit"
},
"require" : {
"php" : ">=5.4",
"composer/installers" : "^1",
"wcm/git-php-hooks" : "^1",
"wcm/git-php-hooks-library" : "^1"
},
"require-dev" : {
"phpunit/phpunit" : "3.7.*",
"mockery/mockery" : "dev-master",
"10up/wp_mock" : "dev-master"
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"autoload" : {
"files" : [ "Bootstrap.php" ],
"psr-4" : {
"WCM\\TermLimit\\" : "src/",
"WCM\\TermLimit\\Tests\\" : "tests/src/"
}
},
"config" : {
"bin-dir" : "bin",
"optimize-autoloader" : true
},
"extra" : {
"branch-alias" : {
"dev-master" : "0.2.x-dev"
}
}
}