forked from vitec-memorix/OaiPmh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 818 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
{
"name": "picturae/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": "info@picturae.com"
}
],
"autoload": {
"psr-4": {
"Picturae\\OaiPmh\\": "src"
}
},
"require": {
"psr/http-message": "^1.0",
"guzzlehttp/psr7": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"zendframework/zend-diactoros": "^1.1",
"squizlabs/php_codesniffer": "^2.3",
"satooshi/php-coveralls": "^0.6.1",
"jameshalsall/licenser": "dev-master"
},
"scripts": {
"post-install-cmd": [
"bash contrib/setup.sh"
]
}
}