forked from PHPExif/php-exif
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
90 lines (90 loc) · 2.45 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "lychee-org/php-exif",
"description": "Object-Oriented EXIF parsing",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tom Van Herreweghe",
"homepage": "http://theanalogguy.be",
"role": "Developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/LycheeOrg/phpstan-lychee"
}
],
"keywords": [
"EXIF",
"IPTC",
"jpeg",
"tiff",
"exiftool",
"FFmpeg",
"FFprobe",
"ImageMagick",
"Imagick"
],
"require": {
"php": "^8.2",
"ext-fileinfo": "*",
"fylax/forceutf8": "^3.0.3",
"php-ffmpeg/php-ffmpeg": "^1.2",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.51",
"infection/infection": "^0.27.10",
"lychee-org/phpstan-lychee": "^1.0.4",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpmd/phpmd": "^2.15",
"phpunit/phpunit": "^9.5.10",
"squizlabs/php_codesniffer": "^3.9",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"suggest": {
"lib-exiftool": "Use perl lib exiftool as adapter",
"ext-exif": "Use exif PHP extension as adapter",
"FFmpeg": "Use FFmpeg/FFprobe as adapter",
"ext-imagick": "Use ImageMagick as adapter",
"ext-mbstring": "Support UTC-16 characters in EXIF data with exif PHP extension"
},
"autoload": {
"psr-0": {
"PHPExif": "lib/"
}
},
"scripts": {
"check-code-style": [
"vendor/bin/phpcs --standard=PSR2 ./lib/"
],
"run-tests": [
"vendor/bin/phpunit -c phpunit.xml.dist",
"vendor/bin/phpunit --coverage-clover=coverage.xml"
],
"validate-files": [
"vendor/bin/parallel-lint --exclude vendor --exclude imagick ."
],
"phpstan": [
"vendor/bin/phpstan analyze"
],
"fix-code-style": [
"vendor/bin/phpcbf --standard=PSR2 ./lib/"
]
},
"config": {
"platform": {
"php": "8.2"
},
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}