-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 954 Bytes
/
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
{
"name" : "lsolesen/pel",
"type" : "library",
"description" : "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
"keywords" : [
"image",
"exif"
],
"homepage" : "http://pel.github.com/pel/",
"authors" : [{
"name" : "Lars Olesen",
"email" : "[email protected]",
"homepage" : "http://intraface.dk",
"role" : "Developer"
}, {
"name" : "Martin Geisler",
"email" : "[email protected]",
"homepage" : "http://geisler.net",
"role" : "Developer"
}
],
"license" : "GPL-2.0",
"require" : {
"php" : ">=7.1.0"
},
"require-dev" : {
"ext-gd" : "*",
"ext-exif" : "*",
"squizlabs/php_codesniffer" : ">3.5",
"php-coveralls/php-coveralls" : ">2.4",
"symfony/phpunit-bridge" : "^4 || ^5 || ^6",
"phpstan/phpstan": "^1.4"
},
"autoload" : {
"psr-4" : {
"lsolesen\\pel\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Pel\\Test\\" : "test/"
}
}
}