forked from d4rkstar/phpagi
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 913 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 913 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
31
32
33
34
35
36
{
"name": "gietos/phpagi",
"type": "library",
"description": "PHPAGI is a PHP class for the Asterisk Gateway Interface. The package is available for use and distribution under the terms of the GNU Public License.",
"keywords": ["asterisk","agi","client","call","flow","ivr","telephony","voip"],
"homepage": "http://phpagi.sourceforge.net/",
"license": "GNU LGPL",
"authors": [
{
"name": "Florian Overkamp",
"email": "florian@speakup.nl",
"homepage": "http://phpagi.sourceforge.net/",
"role": "Developer"
},
{
"name": "David Eder",
"email": "david@eder.us",
"homepage": "http://phpagi.sourceforge.net/",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
},
"autoload": {
"psr-4": {
"gietos\\": "src"
}
},
"scripts": {
"test": "phpunit"
}
}