forked from vitec-memorix/OaiPmh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 896 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
{
"name": "square-bit/oai-pmh",
"description": "Picturae OAI-PMH package. Can be used to create a OAI endpoint",
"license": "GPL-3.0-or-later",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/picturae/licenser.git"
}
],
"authors": [
{
"name": "Picturae",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Picturae\\OaiPmh\\": "src"
}
},
"require": {
"psr/http-message": "^1.0 || ^2.0",
"guzzlehttp/psr7": "^1.2 || ^2.4"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^8.5 || ^9.5",
"laminas/laminas-diactoros": "^1.1 || ^2.0",
"squizlabs/php_codesniffer": "^2.3 || ^3.7",
"php-coveralls/php-coveralls": "^1.1 || ^2.5",
"jameshalsall/licenser": "dev-master",
"ext-dom": "*"
},
"scripts": {
"post-install-cmd": [
"bash contrib/setup.sh"
]
}
}