-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.05 KB
/
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
35
36
37
38
39
40
41
{
"name": "wormling/phparia-lyra",
"type": "library",
"minimum-stability": "dev",
"description": "Sangoma Lyra AMD extension for phparia.",
"keywords": ["asterisk", "ari", "ami", "client", "call", "rest", "telephony", "voip", "php", "amd"],
"homepage": "http://wormling.github.com/phparia-lyra",
"license": "Apache-2.0",
"authors": [
{
"name": "Brian Smith",
"email": "[email protected]",
"homepage": "http://wormling.github.com/",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"phpariaLyra": "src/wormling",
"incenteev/composer-parameter-handler": "~2.0"
}
},
"extra": {
"incenteev-parameters": {
"file": "src/wormling/phpariaLyra/config.yml",
"parameter-key": "examples"
}
},
"require": {
"php": ">=5.4",
"wormling/phparia": ">=2.0"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
}
}