-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 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
37
38
39
40
41
42
43
44
{
"name": "tfrommen/adorable-avatars",
"description": "This plugin integrates the Adorable Avatars avatar placeholder service into WordPress.",
"type": "wordpress-plugin",
"keywords": [
"avatar",
"image",
"profile",
"user"
],
"homepage": "https://github.com/tfrommen/adorable-avatars",
"license": "MIT",
"authors": [
{
"name": "Thorsten Frommen",
"email": "[email protected]",
"homepage": "https://tfrommen.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/tfrommen/adorable-avatars/issues",
"forum": "https://wordpress.org/support/plugin/adorable-avatars",
"source": "https://github.com/tfrommen/adorable-avatars"
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"brain/monkey": "^1.4.0",
"mockery/mockery": "^0.9.7",
"phpunit/phpunit": "~4.8|~5.1"
},
"autoload": {
"psr-4": {
"tfrommen\\AdorableAvatars\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"tfrommen\\AdorableAvatars\\Tests\\": "tests/php"
}
}
}