-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
composer.json
43 lines (43 loc) · 840 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
39
40
41
42
43
{
"name": "lasserafn/php-initial-avatar-generator",
"description": "A package to generate avatars with initials for PHP",
"keywords": [
"initials",
"image",
"avatar",
"svg"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lasse Rafn",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0|^7.1|^7.2|^7.3|^7.4|^8.0|^8.1|^8.2",
"ext-json": "*",
"intervention/image": "^2.3",
"lasserafn/php-initials": "^3.0",
"lasserafn/php-string-script-language": "^0.4",
"meyfa/php-svg": "^0.9.0",
"overtrue/pinyin": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"LasseRafn\\InitialAvatarGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InitialAvatarGenerator\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}