-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
53 lines (53 loc) · 1.46 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
{
"name" : "fileeye/pel",
"type" : "library",
"description" : "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
"keywords" : [
"image",
"exif"
],
"homepage" : "https://github.com/FileEye/pel",
"authors" : [{
"name" : "Lars Olesen",
"email" : "[email protected]",
"homepage" : "http://intraface.dk",
"role" : "Developer"
}, {
"name" : "Martin Geisler",
"email" : "[email protected]",
"homepage" : "http://geisler.net",
"role" : "Developer"
}
],
"license" : "GPL-2.0",
"require" : {
"php" : ">=8.1"
},
"require-dev" : {
"ext-gd" : "*",
"ext-exif" : "*",
"squizlabs/php_codesniffer" : ">=3.7",
"phpunit/phpunit" : "^10 || ^11 ",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1 || ^2",
"phpstan/phpstan-phpunit": "^1 || ^2",
"rector/rector": "^1 || ^2",
"nunomaduro/phpinsights": "^1 || ^2"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload" : {
"psr-4" : {
"lsolesen\\pel\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Pel\\Test\\" : "test/"
}
}
}