-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathcomposer.json
46 lines (46 loc) · 1.25 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
{
"name": "creativeorange/gravatar",
"description": "A Laravel Gravatar package for retrieving gravatar image URLs or checking the existance of an image.",
"keywords": [
"laravel",
"gravatar",
"avatar"
],
"license": "MIT",
"authors": [
{
"name": "Jaco Tijssen",
"email": "[email protected]",
"homepage": "https://www.creativeorange.nl",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "^5|^6|^7|^8|^9|^10.0|^11.0|^12.0"
},
"require-dev": {
"php": ">=7.2",
"nunomaduro/larastan": "^0.6.2|^2.4",
"orchestra/testbench": "^5.4|^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"Creativeorange\\Gravatar\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Creativeorange\\Gravatar\\GravatarServiceProvider"
],
"aliases": {
"Gravatar": "Creativeorange\\Gravatar\\Facades\\Gravatar"
}
}
},
"minimum-stability": "stable",
"scripts": {
"analyze": "phpstan analyse -c vendor/nunomaduro/larastan/extension.neon -l 5 src/"
}
}