forked from level23/PAMI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.35 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "salesupply/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": "https://github.com/level23/PAMI",
"license": "Apache-2.0",
"authors": [
{
"name": "Richard Stellingwerff",
"email": "richard@level23.nl",
"homepage": "https://level23.github.com/",
"role": "Maintainer"
},
{
"name": "Teye Heimans",
"email": "teye@level23.nl",
"homepage": "https://level23.github.com/",
"role": "Maintainer"
},
{
"name": "Marcelo Gornstein",
"email": "marcelog@gmail.com",
"homepage": "https://marcelog.github.com/",
"role": "Developer"
}
],
"autoload": {
"files": [
"src/PAMI/Helpers/helpers.php"
],
"psr-4": {
"PAMI\\": "src/PAMI"
}
},
"autoload-dev": {
"files": [
"src/PAMI/Helpers/helpers.php"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"psr/log": ">= 1.0.0"
},
"require-dev": {
"phpunit/phpunit": "10",
"monolog/monolog": "3.5.*",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-mockery": "^1.1"
}
}