forked from clue/reactphp-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
25 lines (25 loc) · 827 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
{
"name": "clue/reactphp-csv",
"description": "Streaming CSV (Comma-Separated Values or Character-Separated Values) parser and encoder for ReactPHP.",
"keywords": ["CSV", "comma-separated values", "character-separated values", "streaming", "ReactPHP"],
"homepage": "https://github.com/clue/reactphp-csv",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Clue\\React\\Csv\\": "src/" }
},
"require": {
"php": ">=5.3",
"react/stream": "^1.0 || ^0.7 || ^0.6"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^6.0 || ^5.7 || ^4.8.35",
"react/child-process": "^0.6",
"react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3"
}
}