-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.23 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
{
"name": "frameright/image-metadata-parser",
"license": "MIT",
"keywords": ["Image", "Photo", "Metadata", "XMP", "IPTC", "Exif", "Image Display Control", "IDC", "Frameright"],
"description": "Image metadata parsing library",
"authors": [
{
"name": "Frameright (Coberg Ltd)",
"email": "[email protected]",
"homepage": "https://frameright.io/",
"role": "Developer"
},
{
"name": "Aurelien Lourot",
"email": "[email protected]",
"homepage": "https://lourot.dev/",
"role": "Developer"
},
{
"name": "Daniel Chesterton",
"email": "[email protected]",
"homepage": "http://www.chestertondevelopment.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": { "CSD\\Image\\": "src/" }
},
"require": {
"php": ">=5.5",
"ext-xml": "*"
},
"require-dev": {
"mockery/mockery": "~1.6",
"phpunit/phpunit": "^9.5.25",
"phpcompatibility/php-compatibility": "^9.3.5"
},
"scripts": {
"lint": "./vendor/bin/phpcs",
"test": "./vendor/bin/phpunit"
}
}