-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
executable file
·60 lines (60 loc) · 1.54 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
{
"name": "felipemateus/iptv-customers",
"description": "This package controls the IPTV Customers list and generates an m3u8 file for each customer using laravel.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Felipe Mateus",
"email": "[email protected]",
"homepage": "https://felipemateus.com",
"role": "Developer"
}
],
"keywords":[
"Laravel",
"IPTV",
"IPTVCHannels",
"Channels",
"iptv-channels",
"channels-m3u8",
"channels-list",
"iptv-laravel",
"m3u8-iptv",
"channel",
"Playlist",
"iptv-playlist",
"m3u8",
"laravel-package",
"custormer",
"custormers",
"manager-custormers",
"clients",
"clients-channels"
],
"require": {
"php": "^8.2",
"laravel/framework": "^11",
"felipemateus/iptv-core":"^1.3",
"felipemateus/iptv-channels": "^3.0.7",
"felipemateus/http-build-url": "^0.0.1",
"felipemateus/laravel-iptv-gateway-payment":"^0.0.3"
},
"autoload": {
"psr-4": {
"FelipeMateus\\IPTVCustomers\\":"src/"
}
},
"extra": {
"laravel": {
"providers": [
"FelipeMateus\\IPTVCustomers\\IPTVProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"suggest": {
"felipemateus/iptv-channels": "Allows you to control channels, groups and cdn."
}
}