forked from quasarstream/PHP-FFmpeg-video-streaming
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
76 lines (76 loc) · 2.3 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
72
73
74
75
76
{
"name": "aminyazdanpanah/php-ffmpeg-video-streaming",
"description": "📼 PHP FFMpeg - Video Streaming - DASH, HLS http://video.aminyazdanpanah.com",
"type": "library",
"keywords": [
"dash",
"mpeg-dash",
"hls",
"video",
"mp4",
"video-streaming",
"adaptive-http-streaming",
"streaming",
"video-streaming",
"live-streaming",
"http-liv-streaming",
"dynamic-adaptive-streaming-over-http",
"cloud",
"clouds",
"google-cloud-storage",
"s3",
"amazons3",
"microsoft-azure",
"encoding",
"mpd",
"m3u8",
"encryption",
"drm",
"key-rotation",
"clearkey"
],
"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.4",
"aws/aws-sdk-php": "^3.0@dev",
"google/cloud-storage": "dev-main",
"microsoft/azure-storage-blob": "dev-master"
},
"autoload-dev": {
"psr-4": {
"Tests\\FFMpegStreaming\\": "tests"
}
},
"require": {
"php": "^7.2 || ^8.0",
"php-ffmpeg/php-ffmpeg": "^0.15 || 0.16 || 0.17 || 0.18 || 0.19",
"symfony/filesystem": "^4.0 || ^5.0 || ^6.0"
},
"suggest": {
"aminyazdanpanah/php-shaka": "aminyazdanpanah/php-shaka is suggested for using DRM and encryption",
"aws/aws-sdk-php": "Allow sending stream content to AWS services like S3",
"google/cloud-storage": "Allow sending stream content to Google services like Google Storage",
"microsoft/azure-storage-blob": "Allow sending stream content to Google services like Google Storage",
"aminyazdanpanah/handling-file-uploads": "aminyazdanpanah/handling-file-uploads is suggested for uploading and validating a new video."
}
}