-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
36 lines (36 loc) · 1004 Bytes
/
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
{
"name": "get-stream/stream-zend",
"homepage": "https://getstream.io/",
"description": "Build newsfeeds and activity feeds with Zend Framework using getstream.io",
"keywords": ["stream", "feed", "feedly", "getstream", "activity", "newsfeed", "activity feed", "notification feed", "aggregated feed", "zend", "zf3"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Hannes Van De Vreken",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"GetStream\\Zend\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GetStream\\Zend\\Unit\\": "tests/unit"
}
},
"require": {
"get-stream/stream": "^2.5.1",
"zendframework/zend-modulemanager": "^2.8"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"config": {
"zf": {
"component": "GetStream\\Stream"
}
},
"minimum-stability": "stable"
}