-
Notifications
You must be signed in to change notification settings - Fork 529
/
composer.json
61 lines (61 loc) · 1.41 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
60
61
{
"name": "imagine/imagine",
"description": "Image processing for PHP",
"keywords": [
"image manipulation",
"image processing",
"drawing",
"graphics"
],
"homepage": "http://imagine.readthedocs.org/",
"license": "MIT",
"authors": [
{
"name": "Bulat Shakirzyanov",
"email": "mallluhuct@gmail.com",
"homepage": "http://avalanche123.com"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4 || ^9.3"
},
"suggest": {
"ext-exif": "to read EXIF metadata",
"ext-gd": "to use the GD implementation",
"ext-imagick": "to use the Imagick implementation",
"ext-gmagick": "to use the Gmagick implementation"
},
"autoload": {
"psr-4": {
"Imagine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Imagine\\Test\\": "tests/tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.x-dev"
}
},
"archive": {
"exclude": [
"/.*",
"/tests",
"/vendor",
"/bin",
"docs/_build",
"Imagine-*.tgz",
"imagine-*.phar",
"composer.phar"
]
},
"scripts": {
"test": "phpunit --verbose"
}
}