-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.39 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
{
"name": "zenstruck/image",
"description": "Image file wrapper with generic transformation support.",
"homepage": "https://github.com/zenstruck/image",
"type": "library",
"license": "MIT",
"keywords": ["image", "transformation", "manipulation", "gd", "imagick", "imagine", "intervention"],
"authors": [
{
"name": "Kevin Bond",
"email": "kevinbond@gmail.com"
}
],
"require": {
"php": ">=8.0",
"symfony/polyfill-php81": "^1.26",
"zenstruck/temp-file": "^1.0"
},
"require-dev": {
"imagine/imagine": "^1.3",
"intervention/image": "^2.7|^3.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.6.19",
"psr/container": "^1.0|^2.0",
"spatie/image": "^2.0|^3.2",
"srwiez/thumbhash": "^1.2",
"symfony/phpunit-bridge": "^6.1|^7.0",
"symfony/var-dumper": "^5.4|^6.0|^7.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\": ["src/"] }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\Image\\Tests\\": ["tests/"] }
},
"suggest": {
"imagine/imagine": "To use the Imagine image transformer.",
"intervention/image": "To use the Intervention image transformer.",
"srwiez/thumbhash": "To generate ThumbHashes."
}
}