forked from OCLC-Developer-Network/worldcat-discovery-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 853 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" : "worldcat/discovery",
"version" : "0.15.0",
"license" : "Apache-2.0",
"repositories" : [{
"type" : "git",
"url" : "https://github.com/OCLC-Developer-Network/oclc-auth-php.git"
}
],
"require" : {
"php" : ">=5.4.0",
"lib-curl" : "*",
"lib-openssl" : "*",
"ext-curl" : "*",
"ext-json" : "*",
"ext-openssl" : "*",
"guzzle/guzzle" : ">=3.7.0,<3.9.0",
"easyrdf/easyrdf" : "*",
"OCLC/Auth" : "*"
},
"require-dev" : {
"phpunit/phpunit" : "~3",
"php-vcr/php-vcr" : "dev-master",
"php-vcr/phpunit-testlistener-vcr" : "*",
"zendframework/zend-log" : "2.0.*",
"phpdocumentor/phpdocumentor" : "2.*"
},
"autoload" : {
"psr-4" : {
"WorldCat\\Discovery\\" : "src/"
}
},
"description" : "Library to interact with OCLC's WorldCat Discovery Web Services",
"type" : "library",
"keywords" : [
"OCLC"
]
}