-
Notifications
You must be signed in to change notification settings - Fork 76
/
composer.json
37 lines (37 loc) · 1 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
{
"name": "marcelog/pagi",
"type": "library",
"description": "Asterisk Gateway Interface (AGI) client for PHP, suitable to make telephony applications using call flow nodes",
"keywords": ["asterisk","agi","client","call","flow","node","ivr","telephony","voip"],
"homepage": "http://marcelog.github.com/PAGI",
"license": "Apache-2.0",
"authors": [
{
"name": "Marcelo Gornstein",
"email": "marcelog@gmail.com",
"homepage": "http://marcelog.github.com/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"PAGI\\": "src/PAGI"
}
},
"require": {
"php": ">=5.3.3",
"psr/log": ">= 1.0.0"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"monolog/monolog": "1.*",
"squizlabs/php_codesniffer": "2.*",
"phpdocumentor/phpdocumentor": "2.*",
"phing/phing": "2.*",
"phpmd/phpmd": "2.*",
"evert/phpdoc-md" : "~0.1.1",
"satooshi/php-coveralls": "1.0.1",
"codeclimate/php-test-reporter": "0.3.0",
"sebastian/phpcpd": "*"
}
}