This repository was archived by the owner on Nov 8, 2023. It is now read-only.
forked from quasarstream/PHP-FFmpeg-video-streaming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.68 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.68 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
{
"name": "aminyazdanpanah/php-ffmpeg-video-streaming",
"description": "📼 PHP FFMpeg - Video Streaming - DASH, HLS http://video.aminyazdanpanah.com",
"type": "library",
"keywords": [
"dash",
"hls",
"video",
"videostreaming",
"streaming",
"chunk",
"live",
"media",
"video-streaming",
"live-streaming",
"AminYazdanpanah",
"DynamicAdaptiveStreamingOverHTTP"
],
"homepage": "https://github.com/aminyazdanpanah/PHP-FFmpeg-video-streaming",
"license": "MIT",
"authors": [
{
"name": "Amin Yazdanpanah",
"email": "contact@aminyazdanpanah.com",
"homepage": "https://www.aminyazdanpanah.com"
}
],
"minimum-stability": "dev",
"config": {
"sort-packages": true
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Streaming\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "8.3.4"
},
"autoload-dev": {
"psr-4": {
"Tests\\FFMpegStreaming\\": "tests"
}
},
"require": {
"php": "^7.2",
"php-ffmpeg/php-ffmpeg": "^0.14",
"guzzlehttp/guzzle": "~6.0",
"aws/aws-sdk-php": "~3.0",
"google/cloud-storage": "^1.14",
"ext-openssl": "*"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"suggest": {
"php-ffmpeg/php-ffmpeg": "php-ffmpeg/php-ffmpeg is required for video support.",
"aminyazdanpanah/save-uploaded-files": "aminyazdanpanah/save-uploaded-files is suggested for uploading and validating a new video."
}
}