-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 993 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
39
40
41
42
{
"name": "fatpanda-gmbh/bexio-connector",
"type": "library",
"version": "0.1.9",
"description": "A php library to communicate with the API of Bexio",
"keywords": ["bexio"],
"homepage": "https://github.com/fatpanda-gmbh/bexio-connector",
"license": "MIT",
"authors": [
{
"name": "Steven Wüthrich",
"email": "steven@fatpanda.io"
},
{
"name": "Vadim Serdunich",
"email": "symphonyviolist51@gmail.com"
},
{
"name": "Additional contributors",
"homepage": "https://github.com/fatpanda-gmbh/bexio-connector/graphs/contributors"
}
],
"require": {
"php": ">=7.1",
"jms/serializer": "^1.11 || ^2.0 || ^3.0",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"psr/log": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "5.7.3"
},
"autoload": {
"psr-4": {
"Fatpanda\\BexioConnector\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fatpanda\\BexioConnector\\Tests\\": "tests"
}
}
}