-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 839 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 839 Bytes
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
{
"name": "utopia-php/image",
"description": "A simple Image manipulation library",
"type": "library",
"keywords": ["php","framework","upf","utopia","image"],
"license": "MIT",
"autoload": {
"psr-4": {"Utopia\\Image\\":"src/Image"}
},
"scripts": {
"lint": "./vendor/bin/pint --test",
"format": "./vendor/bin/pint",
"check": "./vendor/bin/phpstan analyse --level max src tests",
"test": "phpunit"
},
"require": {
"php": ">=8.1",
"ext-imagick": "*",
"ext-gd": "*"
},
"require-dev": {
"phpunit/phpunit": "10.5.*",
"phpstan/phpstan": "2.1.*",
"laravel/pint": "1.24.*"
},
"suggest": {
"ext-imagick": "Imagick extension is required for Imagick adapter"
},
"minimum-stability": "dev"
}