-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 857 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 857 Bytes
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
{
"name" : "ubl/php-iiif-prezi-reader",
"description" : "Read IIIF Presentation API resources into PHP objects that offer some convenient data extraction methods",
"type" : "library",
"keywords" : [
"iiif",
"iiif-presentation"
],
"require" : {
"php" : ">=8.1",
"softcreatr/jsonpath" : "^0.10.0",
"symfony/html-sanitizer": "^7.2"
},
"require-dev" : {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit" : "~10.5"
},
"autoload" : {
"psr-4" : {
"Ubl\\Iiif\\" : "src/Iiif/"
}
},
"autoload-dev" : {
"psr-4" : {
"Ubl\\Iiif\\" : "tests/Iiif/"
}
},
"scripts": {
"lint": "./vendor/bin/phpstan analyse src tests",
"test": "./vendor/bin/phpunit"
},
"minimum-stability" : "stable",
"license" : "GPL-3.0-or-later",
"authors" : [{
"name" : "Lutz Helm",
"email" : "helm@ub.uni-leipzig.de",
"role" : "Developer"
}
]
}