-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
54 lines (52 loc) · 1.38 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
{
"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": "[email protected]",
"homepage": "https://rokka.io"
}
],
"config": {
"bin-dir": "bin"
},
"prefer-stable": true,
"require": {
"php": "^7.2 || ^8.0",
"imagine/imagine": "^1.0",
"jcupitt/vips" : "^2.1.1 || ^1.0.3",
"phenx/php-font-lib": "^0.5.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^8 || ^9"
},
"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/"
}
},
"scripts": {
"phpstan": "phpstan analyze -l 5 lib/",
"phpunit": "phpunit tests",
"lint": "php-cs-fixer fix --dry-run -v --diff",
"lint:fix": "php-cs-fixer fix -v --diff"
}
}