-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
59 lines (59 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
55
56
57
58
59
{
"name": "jcupitt/vips",
"description": "A high-level interface to the libvips image processing library.",
"keywords": [
"image",
"processing",
"libvips"
],
"homepage": "https://github.com/libvips/php-vips",
"license": "MIT",
"authors": [
{
"name": "John Cupitt",
"email": "jcupitt@gmail.com",
"homepage": "https://github.com/jcupitt",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"ext-ffi": "*",
"psr/log": "^1.1.3|^2.0|^3.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpdocumentor/shim": "^3.3",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Jcupitt\\Vips\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jcupitt\\Vips\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpunit",
"phpcs --standard=phpcs-ruleset.xml ."
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"phpdocumentor/shim": true
}
}
}