-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.27 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
{
"name": "scriptotek/primo-search",
"description": "SDK for the Primo Search REST API",
"homepage": "http://github.com/scriptotek/php-primo-search",
"keywords": ["primo"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dan Michael O. Heggø",
"email": "danmichaelo@gmail.com"
}
],
"autoload": {
"psr-4": {
"Scriptotek\\PrimoSearch\\": "src/"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"http-interop/http-factory-discovery": "^1.4",
"php-http/client-common": "^1.9 || ^2.0",
"psr/http-message": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0"
},
"require-dev": {
"http-interop/http-factory-guzzle": "^1.0",
"php-http/mock-client": "^1.1",
"php-http/guzzle6-adapter": "^2.0",
"phpspec/phpspec": "^6.0",
"squizlabs/php_codesniffer": "^3.3"
},
"extra": {
"laravel": {
"providers": [
"Scriptotek\\PrimoSearch\\Laravel\\ServiceProvider"
],
"aliases": {
"Primo": "Scriptotek\\PrimoSearch\\Laravel\\Facade"
}
}
}
}