forked from chrisyue/php-m3u8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (38 loc) · 823 Bytes
/
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
{
"name": "chrisyue/php-m3u8",
"description": "PHP M3U8 file parser / dumper",
"homepage": "http://chrisyue.com",
"type": "library",
"authors": [{
"name": "chrisyue",
"email": "[email protected]",
"homepage": "http://chrisyue.com"
}],
"keywords": [
"m3u8"
],
"license": [
"MIT"
],
"require": {
"php": ">=5.3.9",
"psr/cache": "^1.0.0"
},
"suggest": {
"symfony/cache": "Cache implements PSR6"
},
"require-dev": {
"sllh/php-cs-fixer-styleci-bridge": "^1.3"
},
"autoload": {
"psr-0": {
"Chrisyue\\PhpM3u8" : ""
}
},
"target-dir": "Chrisyue/PhpM3u8",
"extra": {
"branch-alias" : {
"dev-master" : "1.0-dev"
}
}
}