-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
31 lines (31 loc) · 920 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
{
"name": "clue/quassel-react",
"description": "Streaming, event-driven access to your Quassel IRC core, built on top of ReactPHP.",
"keywords": ["Quassel", "IRC", "ReactPHP", "async"],
"homepage": "https://github.com/clue/reactphp-quassel",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Clue\\React\\Quassel\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Clue\\Tests\\React\\Quassel\\": "tests/" }
},
"require": {
"php": ">=5.3",
"clue/qdatastream": "^0.8",
"react/event-loop": "^1.2",
"react/promise": "~2.0|~1.1",
"react/socket": "^1.9",
"react/stream": "^1.2"
},
"require-dev": {
"clue/block-react": "^1.1",
"phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
}
}