forked from clue/reactphp-ami
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 973 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 973 Bytes
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
{
"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": "christian@clue.engineering"
}
],
"require": {
"php": ">=5.3",
"evenement/evenement": "^3.0 || ^2.0 || ^1.0",
"react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3",
"react/promise": "^2.0 || ^1.1",
"react/socket": "^1.0 || ^0.8.2"
},
"require-dev": {
"clue/block-react": "^1.2",
"phpunit/phpunit": "^7.0 || ^6.0 || ^5.0 || ^4.8.35"
},
"autoload": {
"psr-4": { "Clue\\React\\Ami\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Clue\\Tests\\React\\Ami\\": "tests/" }
}
}