forked from marcelog/PAMI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.01 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
{
"name": "marcelog/pami",
"type": "library",
"description": "Asterisk Manager Interface (AMI) client for PHP, event driven, object oriented",
"keywords": ["asterisk","ami","client","telephony","voip","event","action","manager","monitor"],
"homepage": "http://marcelog.github.com/PAMI",
"license": "Apache-2.0",
"authors": [
{
"name": "Marcelo Gornstein",
"email": "[email protected]",
"homepage": "http://marcelog.github.com/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"PAMI\\": "src/PAMI"
}
},
"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.*",
"satooshi/php-coveralls": "1.0.1",
"evert/phpdoc-md" : "~0.1.1",
"codeclimate/php-test-reporter": "dev-master",
"sebastian/phpcpd": "*",
"marcelog/pagi": "2.*"
}
}