forked from billogram/billogram-v2-api-php-lib
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
46 lines (46 loc) · 1.33 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
{
"name": "friendsofapi/billogram",
"type": "library",
"description": "Library for connecting to the Billogram v2 API",
"keywords": ["api"],
"homepage": "https://billogram.com/api/documentation",
"license": "MIT",
"authors": [
{
"name": "Billogram AB",
"email": "[email protected]"
},
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"php-http/client-implementation": "^1.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0",
"php-http/httplug": "^1.1",
"php-http/multipart-stream-builder": "^1.0",
"php-http/client-common": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"php-http/message-factory": "^1.0",
"php-http/curl-client": "^1.6",
"php-http/message": "^1.0",
"guzzlehttp/psr7": "^1.3",
"nyholm/nsa": "^1.0",
"php-http/mock-client": "^1.0"
},
"autoload": {
"psr-4": {"Billogram\\": "src"}
},
"autoload-dev": {
"psr-4": {"Billogram\\Tests\\": "tests"}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}