-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.6 KB
/
Copy pathcomposer.json
File metadata and controls
56 lines (56 loc) · 1.6 KB
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
{
"name": "fileeye/mediaprobe",
"type": "library",
"description": "A PHP library for reading and writing media files metadata.",
"keywords": [
"image", "exif", "media"
],
"homepage": "https://github.com/FileEye/MediaProbe",
"license": "GPL-3.0",
"require": {
"php": ">=8.2",
"ext-bcmath": "*",
"ext-gd": "*",
"ext-mbstring": "*",
"composer-runtime-api": "^2.0.0",
"fileeye/mimemap": "^2.2",
"monolog/monolog": "^3",
"psr/log": "*",
"sibche/plist": "*",
"symfony/stopwatch": "^7.2"
},
"require-dev" : {
"ext-exif": "*",
"bramus/monolog-colored-line-formatter": "^3",
"phpstan/extension-installer": "*",
"phpstan/phpstan-deprecation-rules": "^2",
"phpstan/phpstan-phpunit": "^2",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^11",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "*",
"symfony/console": "^7.2",
"symfony/filesystem": "^7.2",
"symfony/finder": "^7.2",
"symfony/process": "^7.2",
"symfony/var-dumper": "^7.2",
"symfony/yaml": "^7.2"
},
"autoload": {
"psr-4": {
"FileEye\\MediaProbe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FileEye\\MediaProbe\\Test\\": "tests/"
}
},
"bin": ["bin/fileeye-mediaprobe"],
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}