-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
71 lines (71 loc) · 2.02 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
66
67
68
69
70
71
{
"name": "rtckit/ficore",
"description": "FreeSWITCH Integration Core",
"version": "0.0.4",
"keywords": [
"telecommunications",
"voip",
"telephony",
"telco",
"voice",
"freeswitch"
],
"homepage": "https://github.com/rtckit/ficore",
"license": "MIT",
"authors": [
{
"name": "Ciprian Dosoftei"
}
],
"support": {
"email": "hello@rtckit.io",
"issues": "https://github.com/rtckit/ficore/issues"
},
"require": {
"php": ">=8.1.0",
"ext-filter": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-pcre": "*",
"ext-simplexml": "*",
"monolog/monolog": "^3.6",
"ramsey/uuid": "^4.7",
"react/event-loop": "^1.5",
"react/promise": "^3.1",
"rtckit/esl": "^0.8",
"rtckit/react-esl": "^0.8",
"rtckit/sip": "^0.7",
"wyrihaximus/react-psr-3-stdio": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.4",
"vimeo/psalm": "^5.24"
},
"suggest": {
"ext-pcntl": "Enables daemonization support",
"ext-posix": "Enables UID/GID manipulation"
},
"autoload": {
"psr-4": {
"RTCKit\\FiCore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RTCKit\\FiCore\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": false,
"platform": {
"php": "8.1"
}
},
"scripts": {
"phpstan": "php -d memory_limit=-1 ./vendor/bin/phpstan analyse -c ./etc/phpstan.neon -n -vvv --ansi --level=max src",
"psalm": "php -d memory_limit=-1 ./vendor/bin/psalm --config=./etc/psalm.xml --show-info=true",
"phpunit": "php -d memory_limit=-1 ./vendor/bin/phpunit --debug -c ./etc/phpunit.xml.dist",
"coverage": "php -d memory_limit=-1 ./vendor/bin/phpunit --debug -c ./etc/phpunit.xml.dist --coverage-text --coverage-html=reports/coverage"
}
}