forked from alchemy-fr/PHPExiftool
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
65 lines (65 loc) · 1.9 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
64
65
{
"name": "alchemy/phpexiftool",
"type": "library",
"description": "Exiftool driver for PHP",
"keywords": ["metadata","exiftool"],
"license": "MIT",
"authors": [
{
"name": "Romain Neutron",
"email": "imprec@gmail.com",
"homepage": "http://www.lickmychip.com/"
},
{
"name": "Benoit Burnichon",
"email": "bburnichon@alchemy.fr",
"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||^3.0",
"phpexiftool/exiftool": "^10.10",
"symfony/console": "^2.1||^3.0||^4.2||^5.0||^6.0||^7.0",
"symfony/process": "^2.1||^3.0||^4.2||^5.0||^6.0||^7.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||^5.0||^6.0||^7.0",
"symfony/dom-crawler": "^2.1||^3.0||^4.0||^5.0||^6.0||^7.0",
"symfony/finder": "^2.1||^3.0||^4.0||^5.0||^6.0||^7.0",
"symfony/yaml": "^2.1||^3.0||^4.0||^5.0||^6.0||^7.0"
},
"autoload": {
"psr-0": {
"PHPExiftool\\": "lib/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.5.x-dev"
}
}
}