-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.44 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
{
"name": "sergix44/imagezen",
"description": "Yet another image manipulation library",
"keywords": [
"image",
"imagezen"
],
"homepage": "https://github.com/sergix44/imagezen",
"license": "AGPL-3.0-only",
"authors": [
{
"name": "Sergio Brighenti",
"email": "sergio@brighenti.me",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"ext-fileinfo": "*",
"guzzlehttp/psr7": "^2.6"
},
"suggest": {
"ext-gd": "To use GD library based image processing.",
"ext-imagick": "To use Imagick based image processing."
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"sapientpro/image-comparator": "^1.0",
"pestphp/pest": "^2.29"
},
"autoload": {
"psr-4": {
"SergiX44\\ImageZen\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SergiX44\\ImageZen\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}