forked from scriptotek/php-sru-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.05 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
{
"name": "scriptotek/sru-client",
"type": "library",
"description": "Package for making Search/Retrieve via URL requests and parse the responses",
"homepage": "http://github.com/scriptotek/sru-client",
"keywords": ["sru"],
"require": {
"danmichaelo/quitesimplexmlelement": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"http-interop/http-factory-discovery": "^1.4",
"php-http/client-common": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"php-http/mock-client": "^1.0",
"http-interop/http-factory-guzzle": "^1.0",
"php-http/guzzle6-adapter": "^2.0"
},
"license": "MIT",
"authors": [
{
"name": "Dan Michael O. Heggø",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Scriptotek\\Sru\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scriptotek\\Sru\\": "tests/"
}
}
}