-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
29 lines (29 loc) · 1005 Bytes
/
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
{
"name" : "wecodemore/current-admin-info",
"version" : "2.0.0",
"description" : "Displays info about the current admin screen and its globals, contextual hooks, etc.",
"type" : "wordpress-plugin",
"keywords" : [ "wordpress", "admin", "debug", "development" ],
"homepage" : "https://github.com/franz-josef-kaiser/current-admin-info",
"license" : "MIT",
"authors" : [
{
"name" : "Kaiser Franz Josef",
"email" : "[email protected]"
}
],
"support" : {
"issues" : "https://github.com/franz-josef-kaiser/current-admin-info/issues"
},
"prefer-stable" : true,
"minimum-stability" : "stable",
"require" : {
"php" : ">=5.3",
"composer/installers" : "~1.0"
},
"autoload" : {
"psr-4" : {
"WCM\\CurrentAdminInfo\\" : "src/"
}
}
}