-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
34 lines (34 loc) · 980 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
{
"name": "clue/ami-react",
"description": "Streaming, event-driven access to the Asterisk Manager Interface (AMI), built on top of ReactPHP.",
"keywords": ["Asterisk Manager Interface", "AMI", "async", "ReactPHP"],
"homepage": "https://github.com/clue/reactphp-ami",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3",
"evenement/evenement": "^3.0 || ^2.0 || ^1.0",
"react/event-loop": "^1.2",
"react/promise": "^3.0 || ^2.9 || ^1.1",
"react/socket": "^1.14"
},
"require-dev": {
"clue/block-react": "^1.5",
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
},
"autoload": {
"psr-4": {
"Clue\\React\\Ami\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clue\\Tests\\React\\Ami\\": "tests/"
}
}
}