forked from alchemy-fr/PHPExiftool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.83 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
66
67
68
69
{
"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": "12",
"source": {
"url": "https://github.com/exiftool/exiftool",
"type": "git",
"reference": "12.42"
}
}
}
],
"require": {
"php": "^7.4 || ^8.2",
"doctrine/cache": "^1.0",
"doctrine/collections": "^1.0",
"exiftool/exiftool": "*",
"symfony/console": "^5 || ^6.2 || ^7",
"symfony/css-selector": "^5 || ^6.2",
"symfony/dom-crawler": "^5 || ^6.2",
"symfony/process": "^5 || ^6",
"ext-dom": "*",
"cache/array-adapter": "^1.2",
"ext-json": "*",
"symfony/monolog-bridge": "^5.4 || ^6.2"
},
"suggest": {
"jms/serializer": "To serialize tags",
"symfony/yaml": "To serialize tags in Yaml format"
},
"require-dev": {
"jms/serializer": "~3",
"phpunit/phpunit": "^9.6.7",
"symfony/finder": "^5",
"symfony/yaml": "^5 || ^6"
},
"autoload": {
"psr-4": {
"PHPExiftool\\": "lib/PHPExiftool/"
}
},
"autoload-dev": {
"psr-4": {
}
},
"scripts": {
"test": "./vendor/bin/phpunit"
}
}