-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
40 lines (40 loc) · 1.03 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
{
"name": "get-stream/stream-chat",
"description": "A PHP client for Stream Chat (https://getstream.io/chat/)",
"keywords": [
"stream",
"chat",
"api",
"chat-sdk"
],
"homepage": "https://getstream.io/chat/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Tommaso Barbugli",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/GetStream/stream-chat-php/issues",
"docs": "https://getstream.io/chat/docs/php/?language=php"
},
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^6.5.8 || ^7.0.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0.0",
"phan/phan": "^5.3.2",
"phpunit/phpunit": "^9.5.20"
},
"autoload": {
"psr-0": {
"GetStream\\StreamChat": "lib/"
},
"psr-4": {
"GetStream\\Unit\\": "tests/unit/",
"GetStream\\Integration\\": "tests/integration/"
}
}
}