forked from joserick/PNGMetadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 947 Bytes
/
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
{
"name": "joserick/png-metadata",
"description": "A PHP library for extract the metadata (XMP, EXIF) within a PNG format image.",
"keywords": [
"metadata",
"png",
"exif",
"xmp",
"exiftool"
],
"type": "library",
"license": "GPL-3.0",
"authors": [
{
"name": "Jóse Erick Carreón",
"email": "[email protected]",
"homepage": "https://github.com/joserick"
},
{
"name": "Jan Barášek",
"homepage": "https://baraja.cz"
}
],
"require": {
"php": "^7.4 || ^8.0 <8.1",
"ext-exif": "*"
},
"require-dev": {
"phpstan/phpstan": "^0.12.74",
"phpstan/phpstan-nette": "^0.12.14",
"spaze/phpstan-disallowed-calls": "^1.1",
"roave/security-advisories": "dev-master",
"tracy/tracy": "^2.7"
},
"autoload": {
"psr-4": {
"PNGMetadata\\": "src/"
}
},
"scripts": {
"phpstan": [
"vendor/bin/phpstan analyse src -c phpstan.neon --level 6 --no-progress"
]
},
"minimum-stability": "stable"
}