-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.68 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.68 KB
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": "yzalis/identicon",
"type": "library",
"description": "Generate unique identicon avatars from any string",
"keywords": [
"avatar",
"identicon",
"image",
"hash",
"unique",
"svg",
"png"
],
"homepage": "https://github.com/yzalis/Identicon",
"license": "MIT",
"authors": [
{
"name": "Benjamin Laugueux",
"email": "benjamin@yzalis.com"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"ext-gd": "*",
"ext-imagick": "*",
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"friendsofphp/php-cs-fixer": "^3.40"
},
"suggest": {
"ext-gd": "Required for GD-based PNG generation (default renderer)",
"ext-imagick": "Required for ImageMagick-based generation"
},
"autoload": {
"psr-4": {
"Yzalis\\Identicon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yzalis\\Identicon\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html=coverage",
"analyze": "phpstan analyse",
"cs": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"ci": [
"@cs",
"@analyze",
"@test"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}