forked from intercom/intercom-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.33 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
54
{
"name": "intercom/intercom-php",
"description": "Intercom API client built on top of HTTPlug",
"keywords": [
"api",
"guzzle",
"intercom",
"intercom.io"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Intercom Platform Team",
"homepage": "https://www.intercom.com"
}
],
"support": {
"issues": "https://github.com/intercom/intercom-php/issues",
"source": "https://github.com/intercom/intercom-php"
},
"autoload": {
"psr-4": {
"Intercom\\": [
"src"
]
}
},
"autoload-dev": {
"psr-4": {
"Intercom\\Test\\": [
"tests"
]
}
},
"require": {
"php": ">= 7.1",
"ext-json": "*",
"php-http/client-common": "^1.9 || ^2.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.4",
"php-http/httplug": "^1.0 || ^2.0",
"php-http/message": "^1.7",
"psr/http-message": "^1.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.7.0",
"php-http/mock-client": "^1.4",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
"squizlabs/php_codesniffer": "^3.1"
},
"config": {
"sort-packages": true
}
}