-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.47 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.47 KB
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": "quasarstream/codecs",
"type": "library",
"description": "A comprehensive codec implementation package for WebRTC applications, providing audio/video encoding and decoding capabilities.",
"keywords": [
"webrtc",
"codecs",
"h264",
"vp8",
"opus",
"pcma",
"pcmu"
],
"homepage": "https://www.quasarstream.com/webrtc",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Amin Yazdanpanah",
"email": "github@aminyazdanpanah.com"
},
{
"name": "Sana Moniri",
"email": "s.mo@quasarstream.com"
},
{
"name": "Quasar Stream Community",
"homepage": "https://quasarstream.com/teams"
}
],
"require": {
"php": "^8.4",
"ext-ffi": "*",
"quasarstream/exception": "^1.0",
"quasarstream/vpx": "^1.0",
"quasarstream/opus": "^1.0",
"quasarstream/av": "^1.0",
"quasarstream/rtp-parameter": "^1.0"
},
"require-dev": {
"phpunit/php-code-coverage": "11.0.x-dev",
"phpunit/phpunit": "^11.3"
},
"autoload": {
"psr-4": {
"Webrtc\\Codecs\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Webrtc\\Codecs\\": "tests"
}
},
"scripts": {
"pre-install-cmd": [
"@check-linux"
],
"pre-update-cmd": [
"@check-linux"
],
"check-linux": [
"php -r \"if (stripos(PHP_OS_FAMILY, 'Linux') === false) { fwrite(STDERR, 'This package only supports Linux.' . PHP_EOL); exit(1); }\""
]
},
"minimum-stability": "dev"
}