forked from greenfieldtech-nirs/phpari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.19 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": "greenfieldtech-nirs/phpari",
"type": "library",
"description": "A PHP Class Library for Asterisk ARI",
"keywords": ["Asterisk", "ARI", "VoIP", "REST", "PHP"],
"homepage": "https://github.com/greenfieldtech-nirs/phpari",
"license": "GPL-2.0",
"authors": [
{
"name": "Nir Simionovich",
"email": "nir.simionovich@gmail.com",
"homepage": "http://www.simionovich.com",
"role": "Packager"
}
],
"require": {
"php": ">=5.3.9",
"educoder/pest": "1.0.0",
"devristo/phpws": "dev-master"
},
"autoload": {
"files": [
"phpari.php",
"src/interfaces/asterisk.php",
"src/interfaces/channels.php",
"src/interfaces/bridges.php",
"src/interfaces/endpoints.php",
"src/interfaces/recordings.php",
"src/interfaces/applications.php",
"src/interfaces/devicestates.php",
"src/interfaces/events.php",
"src/interfaces/mailboxes.php",
"src/interfaces/sounds.php",
"src/interfaces/playbacks.php",
"src/helpers/parsing.php"
]
}
}