-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcomposer.json
41 lines (41 loc) · 1.19 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
{
"name": "phpexiftool/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/"
}
],
"require": {
"php" : ">=5.3.3",
"doctrine/collections" : "~1.0",
"doctrine/cache" : "~1.0",
"monolog/monolog" : "~1.3",
"phpexiftool/exiftool" : "10.12",
"symfony/process" : "~2.0|~3.0",
"symfony/console" : "~2.0|~3.0"
},
"suggest": {
"jms/serializer" : "To serialize tags",
"symfony/yaml" : "To serialize tags in Yaml format"
},
"require-dev": {
"symfony/css-selector" : "~2.0|~3.0",
"symfony/finder" : "~2.0|~3.0",
"symfony/dom-crawler" : "~2.0|~3.0",
"symfony/yaml" : "~2.0|~3.0",
"jms/serializer" : "~0.10",
"sami/sami" : "~1.0",
"silex/silex" : "~1.0"
},
"autoload": {
"psr-0": {
"PHPExiftool": "lib"
}
}
}