-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 931 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
{
"name": "educach/dsb-client",
"description": "Client library for communicating with the REST API of the national catalog of the Swiss digital school library",
"license": "MIT",
"type": "library",
"homepage": "https://github.com/educach/dsb-client",
"keywords": ["education","lom"],
"authors": [
{
"name": "educa.ch",
"email": "[email protected]"
},
{
"name": "Diego Pizarro",
"email": "[email protected]"
},
{
"name": "Wouter Admiraal",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^4.7",
"satooshi/php-coveralls": "~1.0"
},
"require": {
"guzzlehttp/guzzle": "~6.2",
"sabre/xml": "~1.0"
},
"autoload": {
"psr-4": {
"Educa\\DSB\\Client\\": "src/Educa/DSB/Client"
}
}
}