-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 loc) · 991 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": "bokbasen/php-sdk-auth",
"license": "MIT",
"type": "library",
"description": "PHP SDK for Bokbasen API authentication service",
"homepage": "https://github.com/Bokbasen/php-sdk-auth",
"autoload": {
"psr-4" : {
"Bokbasen\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bokbasen\\Auth\\Tests\\" : "tests"
}
},
"authors": [
{
"name": "Ketil Stadskleiv",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"psr/cache": "^1|^2|^3",
"psr/log": "^1|^2|^3",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^1.0|^2.0",
"php-http/discovery": "^1.0",
"php-http/message": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5",
"symfony/cache": "^3",
"php-http/guzzle6-adapter": "^1.0",
"php-http/mock-client": "^0.3"
}
}