forked from wormling/phparia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.46 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.46 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "wormling/phparia",
"type": "library",
"minimum-stability": "dev",
"description": "Asterisk REST Interface (ARI) client for PHP.",
"keywords": [
"asterisk",
"ari",
"ami",
"client",
"call",
"rest",
"ivr",
"telephony",
"voip",
"php"
],
"homepage": "http://wormling.github.com/phparia",
"license": "Apache-2.0",
"authors": [
{
"name": "Brian Smith",
"email": "wormling@gmail.com",
"homepage": "http://wormling.github.com/",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"phparia": "src/wormling"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Devristo/phpws"
},
{
"type": "vcs",
"url": "https://github.com/wormling/evenement"
}
],
"extra": {
"incenteev-parameters": {
"file": "src/wormling/phparia/config.yml",
"parameter-key": "examples"
}
},
"require": {
"php": ">=5.4",
"evenement/evenement": "dev-master",
"educoder/pest": "1.0.0",
"devristo/phpws": "dev-master",
"clue/ami-react": "~0.3.0",
"incenteev/composer-parameter-handler": ">=2.0",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": ">=5.0"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
}
}