-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.13 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.13 KB
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
{
"name": "antodippo/exif-reader",
"description": "A simple, straightforward and fully typed, Exif reader library",
"type": "library",
"keywords": ["exif","images"],
"license": "MIT",
"authors": [
{
"name": "Antonello D'Ippolito",
"email": "antonellodippolito@gmail.com",
"homepage": "http://antodippo.com"
}
],
"require": {
"php": "^7.2",
"ext-exif": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"infection/infection": "^0.14.2 || ^0.15.0",
"giorgiosironi/eris": "^0.11.0",
"vimeo/psalm": "^3.7",
"friendsofphp/php-cs-fixer": "^2.16",
"cweagans/composer-patches": "^1.6"
},
"autoload": {
"psr-4": {
"ExifReader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ExifReader\\Tests\\": "tests/"
}
},
"extra": {
"patches": {
"giorgiosironi/eris": {
"Fix PHP 7.4 deprecation": "https://patch-diff.githubusercontent.com/raw/giorgiosironi/eris/pull/125.patch"
}
}
}
}