forked from PotatoPowered/gravatar-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 832 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
30
31
32
33
34
35
36
37
38
{
"name": "jeffersonsimaogoncalves/gravatar-helper",
"type": "cakephp-plugin",
"description": "A helper that can be used to pull profile pictures from the gravatar service for CakePHP 3.x ",
"keywords": [
"gravatar",
"avatar",
"helper",
"CakePHP"
],
"license": "MIT",
"authors": [
{
"name": "Blake Sutton",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^5.4.16|^7.2",
"cakephp/cakephp": "^3.0|^4.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0|^8.0",
"cakephp/cakephp-codesniffer": "dev-master"
},
"autoload": {
"psr-4": {
"GravatarHelper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GravatarHelper\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}