forked from Bokbasen/php-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.09 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
{
"name": "bokbasen/php-api-client",
"license": "MIT",
"type": "library",
"description": "Generic PHP API client for Bokbasen's API",
"homepage": "https://www.bokbasen.no",
"autoload": {
"psr-4": {
"Bokbasen\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Bokbasen\\": "tests"
}
},
"authors": [
{
"name": "Ketil Stadskleiv",
"email": "[email protected]"
},
{
"name": "Harald Tollefsen",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"bokbasen/php-sdk-auth": "^2|^3",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^2.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0"
},
"require-dev": {
"monolog/monolog": "^1.23",
"php-http/mock-client": "^1.0",
"php-http/message": "^1.0",
"nyholm/psr7": "^1.1",
"guzzlehttp/psr7": "^1.0",
"php-http/guzzle6-adapter": "^2.0",
"phpunit/phpunit": "^6"
},
"config": {
"sort-packages": true,
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}