-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.71 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
62
63
{
"name": "markoschmidt/phpexiftool",
"type": "library",
"description": "Exiftool driver for PHP",
"keywords": [
"metadata",
"exiftool"
],
"license": "MIT",
"authors": [
{
"name": "Romain Neutron",
"email": "[email protected]",
"homepage": "http://www.lickmychip.com/"
},
{
"name": "Benoit Burnichon",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "exiftool/exiftool",
"version": "11",
"source": {
"url": "https://github.com/exiftool/exiftool.git",
"type": "git",
"reference": "11.84"
}
}
}
],
"require": {
"php": ">=5.5.9",
"doctrine/cache": "^1.0",
"doctrine/collections": "^1.0",
"monolog/monolog": "^1.3|^2.0",
"exiftool/exiftool": "^11",
"symfony/console": "^2.1|^3.0|^4.0|^5.0",
"symfony/process": "^2.1|^3.0|^4.0|^5.0"
},
"suggest": {
"jms/serializer": "To serialize tags",
"symfony/yaml": "To serialize tags in Yaml format"
},
"require-dev": {
"jms/serializer": "~0.10|^1.0",
"phpunit/phpunit": "^4.0|^5.0",
"silex/silex": "~1.0",
"symfony/css-selector": "^2.1|^3.0|^4.0",
"symfony/dom-crawler": "^2.1|^3.0|^4.0",
"symfony/finder": "^2.1|^3.0|^4.0",
"symfony/yaml": "^2.1|^3.0|^4.0"
},
"autoload": {
"psr-0": {
"PHPExiftool\\": "lib/"
}
}
}