forked from gonebusy/gonebusy-php-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
32 lines (32 loc) · 874 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
{
"name": "gonebusy/gonebusy-php-client",
"type": "library",
"description": "This is a PHP client for communicating with the full GoneBusy API",
"keywords": ["GoneBusy API","API","SDK"],
"homepage": "https://www.gonebusy.com",
"license": "MIT",
"authors": [
{
"name": "Alex Agranov",
"email": "[email protected]",
"homepage": "https://github.com/gonebusy",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"mashape/unirest-php": "~3.0.1",
"apimatic/jsonmapper": "~1.0.0"
},
"require-dev": {
"phpunit/phpunit": "5.7.*"
},
"autoload": {
"psr-4": {
"GonebusyLib\\": "src/"
}
}
}