forked from infusionsoft/infusionsoft-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·44 lines (44 loc) · 1.12 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
{
"name": "infusionsoft/php-sdk",
"description": "PHP SDK for the Infusionsoft",
"keywords": [
"infusionsoft",
"sdk"
],
"homepage": "https://developer.infusionsoft.com",
"license": "MIT",
"authors": [
{
"name": "Infusionsoft",
"homepage": "https://developer.infusionsoft.com"
}
],
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "~6.1",
"lstrojny/fxmlrpc": "^0.14.0",
"psr/log": "~1.0",
"php-http/guzzle6-adapter": "^1.1",
"zendframework/zend-diactoros": "^1.7",
"php-http/message": "^1.6",
"php-http/curl-client": "^1.7"
},
"require-dev": {
"mockery/mockery": "^0.9",
"phpunit/phpunit": "~4",
"doctrine/instantiator": "1.0.5",
"squizlabs/php_codesniffer": "1.*"
},
"autoload": {
"psr-0": {
"Infusionsoft": ["src", "tests"]
}
},
"extra": {
"laravel": {
"providers": [
"Infusionsoft\\FrameworkSupport\\Laravel\\InfusionsoftServiceProvider"
]
}
}
}