-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.64 KB
/
Copy pathcomposer.json
File metadata and controls
69 lines (69 loc) · 1.64 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
66
67
68
69
{
"name": "quasarstream/av",
"type": "library",
"description": "This PHP library leverages the Foreign Function Interface (FFI) to directly interact with native FFmpeg shared libraries (libavcodec, libavfilter, libavformat, etc.), providing low-level access to powerful multimedia processing capabilities within PHP.",
"keywords": [
"ffmpeg",
"libavcodec",
"avcodec",
"libavfilter",
"avfilter",
"libavformat",
"avformat",
"libswscale",
"swscale",
"webrtc",
"codec"
],
"homepage": "https://www.quasarstream.com/webrtc",
"license": "MIT",
"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/mixin": "^1.0"
},
"require-dev": {
"phpunit/php-code-coverage": "11.0.x-dev",
"phpunit/phpunit": "^11.3"
},
"autoload": {
"psr-4": {
"Webrtc\\AVCodec\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Webrtc\\AVCodec\\": "tests"
}
},
"scripts": {
"setup-ffmpeg": [
"php scripts/ffmpeg-downloader.php"
],
"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"
}