-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 936 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
{
"name": "miljar/php-exif-common",
"description": "Common functionality for PHPExif packages",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tom Van Herreweghe",
"homepage": "http://theanalogguy.be",
"role": "Developer"
}
],
"keywords": ["EXIF", "IPTC", "jpeg", "tiff", "exiftool"],
"require": {
"php": "^5.6 || ^7.0",
"doctrine/collections": "^1.3"
},
"require-dev": {
"mockery/mockery": " ~0.9.5",
"phpmd/phpmd": "~2.4.0",
"phpunit/phpunit": "~5.6.0",
"satooshi/php-coveralls": "~1.0.0",
"sebastian/phpcpd": "~2.0.4",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"psr-4": {
"PHPExif\\Common\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\PHPExif\\Common\\": "tests/"
}
}
}