-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
composer.json
70 lines (69 loc) · 1.76 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "laravolt/avatar",
"description": "Turn name, email, and any other string into initial-based avatar or gravatar.",
"keywords": [
"laravel",
"laravolt",
"avatar",
"gravatar"
],
"homepage": "https://github.com/laravolt/avatar",
"license": "MIT",
"authors": [
{
"name": "Bayu Hendra Winata",
"email": "[email protected]",
"homepage": "https://laravolt.dev",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"illuminate/support": "^10.0|^11.0",
"illuminate/cache": "^10.0|^11.0",
"intervention/image": "^3.4"
},
"suggest": {
"ext-gd": "Needed to support image manipulation",
"ext-imagick": "Needed to support image manipulation, better than GD"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^10.5",
"mockery/mockery": "~1.3",
"php-coveralls/php-coveralls": "^2.1",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-type-coverage": "^2.8"
},
"autoload": {
"psr-4": {
"Laravolt\\Avatar\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Laravolt\\Avatar\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
},
"laravel": {
"providers": [
"Laravolt\\Avatar\\ServiceProvider"
],
"aliases": {
"Avatar": "Laravolt\\Avatar\\Facade"
}
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}