-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 866 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 866 Bytes
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
{
"name": "homebaseai/intellirent-sdk-php",
"type": "library",
"version": "dev-master",
"license": "MIT",
"homepage": "https://homebase.ai",
"keywords": [
"intellirent",
"php",
"sdk",
"api"
],
"authors": [
{
"name": "John Baguio",
"email": "johnb@fullscale.io"
}
],
"require": {
"php": ">=5.4.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.0",
"guzzlehttp/psr7": "^1.4.1"
},
"require-dev": {
"phing/phing": "2.*",
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-4": {
"IntellirentSDK\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"IntellirentSDK\\Tests\\": "tests/"
}
}
}