-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.03 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
{
"name": "joppuyo/jpeg-xl-encode",
"description": "A PHP library for encoding JPEG XL images. Very much inspired by WebP Convert.",
"keywords": [
"jpeg xl",
"jpeg-xl",
"jpegxl",
"jxl",
"image",
"images",
"encode",
"encoder",
"convert",
"converter"
],
"license": "MIT",
"authors": [
{
"name": "Johannes Siipola",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"NPX\\": "src/"
}
},
"require": {
"php": ">=7.2.5",
"symfony/process": "^5.3",
"rosell-dk/image-mime-type-guesser": "^1.1.1",
"respect/validation": "^2.0.17"
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.3",
"codeception/module-cli": "^1.1"
},
"suggest": {
"jcupitt/vips": "Required for using the vips method"
}
}