-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
58 lines (58 loc) · 1.71 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "scriptotek/alma-client",
"type": "library",
"description": "Package for interacting with some of the Alma APIs",
"homepage": "http://github.com/scriptotek/php-alma-client",
"keywords": ["alma"],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php" : ">=7.1",
"ext-json": "*",
"scriptotek/marc": "^2.0",
"danmichaelo/quitesimplexmlelement": "^1.0",
"scriptotek/sru-client": "^0.7.1",
"psr/http-message": "^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": "^1.9 || ^2.0",
"symfony/polyfill-php73": "^1.11",
"friends-of-phpspec/phpspec-expect": "^4.0"
},
"require-dev": {
"phpspec/phpspec": "^5.0 || ^6.0 || ^7.0",
"wp-cli/php-cli-tools": "^0.11.1",
"php-http/mock-client": "^1.0",
"php-http/guzzle6-adapter": "^1.1 || ^2.0",
"http-interop/http-factory-guzzle": "^1.0",
"squizlabs/php_codesniffer": "^3.3"
},
"license": "MIT",
"authors": [
{
"name": "Dan Michael O. Heggø",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Scriptotek\\Alma\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Scriptotek\\Alma\\": "spec/"
}
},
"extra": {
"laravel": {
"providers": [
"Scriptotek\\Alma\\Laravel\\ServiceProvider"
],
"aliases": {
"Alma": "Scriptotek\\Alma\\Laravel\\Facade"
}
}
}
}