-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcomposer.json
41 lines (41 loc) · 1.07 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
{
"name": "get-stream/stream",
"description": "A PHP client for Stream (https://getstream.io)",
"keywords": [
"stream",
"newsfeed",
"feedly"
],
"homepage": "https://getstream.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Tommaso Barbugli",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/GetStream/stream-php/issues",
"docs": "https://getstream.io/activity-feeds/docs/?language=php"
},
"require": {
"php": ">=8.0",
"guzzlehttp/guzzle": "^7.5.0",
"firebase/php-jwt": "^v6.4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14.0",
"phan/phan": "^5.4.0",
"phpunit/phpunit": "^9.6.3"
},
"autoload": {
"psr-0": {
"GetStream\\Stream": "lib/"
},
"psr-4": {
"GetStream\\Stubs\\": "tests/stubs/",
"GetStream\\Unit\\": "tests/unit/",
"GetStream\\Integration\\": "tests/integration/"
}
}
}