forked from rokka-io/imagine-vips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (56 loc) · 1.34 KB
/
composer.json
File metadata and controls
57 lines (56 loc) · 1.34 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
{
"name": "rokka/imagine-vips",
"description": "libvips adapter for imagine",
"keywords": [
"image manipulation",
"image processing",
"drawing",
"graphics",
"vips",
"libvips",
"php-vips"
],
"homepage": "https://github.com/rokka-io/imagine-vips",
"license": "MIT",
"authors": [
{
"name": "rokka",
"email": "contact@rokka.io",
"homepage": "https://rokka.io"
}
],
"config": {
"bin-dir": "bin"
},
"require": {
"php": "^7.1 || ^8.0",
"ext-vips": "^1.0.8",
"imagine/imagine": "^1.0",
"jcupitt/vips": "^1.0.3",
"phenx/php-font-lib": "^0.5.2"
},
"suggest": {
"ext-gd": "to use the GD implementation fallback for saving unsupported file formats",
"ext-imagick": "to use the Imagick implementation fallback for saving unsupported file formats"
},
"autoload": {
"psr-0": {
"Imagine": "lib/"
}
},
"archive": {
"exclude": [
"/.*",
"/tests",
"/vendor",
"/bin",
"docs/_build",
"Imagine-*.tgz",
"imagine-*.phar",
"composer.phar"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.8"
}
}