-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
36 lines (36 loc) · 1.01 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
{
"name": "aminyazdanpanah/php-shaka",
"type": "library",
"description": "Shaka PHP is a library that uses Shaka Packager for DASH and HLS packaging and encryption, supporting Common Encryption for Widevine and other DRM Systems.",
"keywords": [
"google", "dash", "hls", "video", "php", "mpeg-dash", "laravel-package", "laravel", "shaka", "packager", "live", "drm", "widevine", "palyready", "raw-key"
],
"license": "MIT",
"authors": [
{
"name": "Amin Yazdanpanah",
"email": "[email protected]",
"homepage": "http://www.aminyazdanpanah.com/"
}
],
"require": {
"php": "^7.2",
"symfony/process": "^4.2|^5.0"
},
"require-dev": {
"phpunit/phpunit": "9.1.4"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Shaka\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Shaka\\": "tests"
}
}
}