-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathcomposer.json
executable file
·53 lines (53 loc) · 1.4 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
47
48
49
50
51
52
53
{
"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": ">=8.1",
"guzzlehttp/guzzle": "^7.4.2",
"lstrojny/fxmlrpc": "^0.22.0",
"psr/log": "^1.0|^2.0|^3.0",
"laminas/laminas-diactoros": "^2.26.0",
"php-http/guzzle7-adapter": "^1.0",
"php-http/message": "^1.16",
"psr/http-factory": "^1.0",
"php-http/message-factory": "^1.1"
},
"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"
}
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}