-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
49 lines (49 loc) · 1.27 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
{
"name": "jellybellydev/image-orientation-fix",
"description": "PHP library to fix image orientation by exif data.",
"keywords": [
"image",
"orientation",
"exif",
"exif_read_data",
"rotate",
"auto-rotate",
"auto-adjust",
"portrait",
"landscape",
"ImageOrientationFix"
],
"homepage": "http://github.com/JellyBellyDev/ImageOrientationFix",
"license": "MIT",
"authors": [
{
"name": "Andrea Giannantonio",
"email": "a.giannantonio@gmail.com"
}
],
"autoload": {
"psr-4": {
"ImageOrientationFix\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ImageOrientationFixTest\\": "tests/"
}
},
"require": {
"php": "^7.4|^8.0",
"ext-gd": "*",
"ext-exif": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"friendsofphp/php-cs-fixer": "^2.16"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-clover": "vendor/bin/phpunit --coverage-clover=coverage.clover",
"cs-fixer": "vendor/bin/php-cs-fixer fix --verbose",
"cs-fixer-dry-run": "vendor/bin/php-cs-fixer fix --verbose --diff --dry-run"
}
}