-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (45 loc) · 954 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
37
38
39
40
41
42
43
44
45
{
"name": "icicleio/stream",
"description": "Asynchronous streams for Icicle.",
"keywords": [
"asynchronous",
"async",
"stream"
],
"homepage": "http://icicle.io",
"license": "MIT",
"authors": [
{
"name": "Aaron Piotrowski",
"email": "[email protected]"
}
],
"require": {
"icicleio/icicle": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"suggest": {
"ext-mbstring": "Enables encoding-aware text stream reading."
},
"autoload": {
"psr-4": {
"Icicle\\Stream\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Icicle\\Tests\\Stream\\": "tests"
}
}
}