-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcomposer.json
executable file
·50 lines (50 loc) · 1.35 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": "miljar/php-exif",
"description": "Object-Oriented EXIF parsing",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tom Van Herreweghe",
"homepage": "http://theanalogguy.be",
"role": "Developer"
}
],
"keywords": ["EXIF", "IPTC", "jpeg", "tiff", "exiftool"],
"require": {
"php": ">=5.4"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^1.0",
"phpmd/phpmd": "~2.2",
"phpunit/phpunit": ">=4.0 <6.0",
"satooshi/php-coveralls": "~0.6",
"sebastian/phpcpd": "1.4.*@stable",
"squizlabs/php_codesniffer": "1.4.*@stable"
},
"suggest": {
"lib-exiftool": "Use perl lib exiftool as adapter",
"ext-exif": "Use exif PHP extension as adapter"
},
"autoload": {
"psr-0": {
"PHPExif": "lib/"
}
},
"scripts": {
"check-code-style": [
"vendor/bin/phpcs --standard=PSR2 ./lib/"
],
"run-tests": [
"vendor/bin/phpunit -c phpunit.xml.dist",
"vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml"
],
"validate-files": [
"vendor/bin/parallel-lint --exclude vendor ."
]
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}