forked from infusionsoft/infusionsoft-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·46 lines (46 loc) · 1.21 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": "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.3",
"guzzlehttp/guzzle": "^7",
"lstrojny/fxmlrpc": "^0.15.0",
"psr/log": "~1.0",
"laminas/laminas-diactoros": "^2.0",
"php-http/guzzle7-adapter": "^0.1",
"php-http/message": "^1.6"
},
"require-dev": {
"mockery/mockery": "^1.2",
"phpunit/phpunit": "~9",
"doctrine/instantiator": "^1.3.0",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-0": {
"Infusionsoft": ["src", "tests"]
}
},
"extra": {
"laravel": {
"providers": [
"Infusionsoft\\FrameworkSupport\\Laravel\\InfusionsoftServiceProvider"
],
"aliases": {
"Infusionsoft": "Infusionsoft\\FrameworkSupport\\Laravel\\InfusionsoftFacade"
}
}
}
}