-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·36 lines (36 loc) · 1.05 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
{
"name" : "wcm/avatar",
"description" : "Allows uploading an attachment in a users profile to be used instead of an avatar",
"keywords" : [
"avatar",
"attachment"
],
"type" : "wordpress-plugin",
"homepage" : "https://github.com/wecodemore/wcm-avatar",
"license" : "MIT",
"authors" : [
{
"name" : "Franz Josef Kaiser",
"email" : "[email protected]",
"homepage" : "http://unserkaiser.com"
}
],
"support" : {
"issues" : "https://github.com/wecodemore/wcm-avatar/issues",
"source" : "https://github.com/wecodemore/wcm-avatar"
},
"require" : {
"php" : ">=5.4",
"composer/installers" : "~1.0",
"wcm/git-php-hooks" : "^1",
"wcm/git-php-hooks-library" : "^1"
},
"autoload" : {
"psr-4" : {
"WCM\\User\\Avatar\\" : "src/"
}
},
"config" : {
"optimize-autoloader" : true
}
}