-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
50 lines (50 loc) · 1.14 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
{
"name": "jcupitt/vips",
"description": "A high-level interface to the libvips image processing library.",
"keywords": [
"image",
"processing",
"libvips"
],
"homepage": "https://github.com/jcupitt/php-vips",
"license": "MIT",
"authors": [
{
"name": "John Cupitt",
"email": "jcupitt@gmail.com",
"homepage": "https://github.com/jcupitt",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.11",
"ext-vips": ">=0.1.2",
"psr/log": "^1.0.1"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"phpdocumentor/phpdocumentor" : "2.*",
"jakub-onderka/php-parallel-lint": "^0.9"
},
"autoload": {
"psr-4": {
"Jcupitt\\Vips\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jcupitt\\Vips\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpunit"
]
}
}