-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 863 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
39
40
41
42
43
44
45
46
{
"name": "jacotheron/laravel-mux",
"description": "Simple API Wrapper for Mux videos",
"keywords": [
"php",
"sdk",
"rest",
"api",
"video",
"laravel",
"streaming"
],
"type": "library",
"require": {
"php": "^7.2.5 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.0.0",
"muxinc/mux-php": "^3.5",
"illuminate/support": "^6|^7|^8|^9"
},
"autoload": {
"psr-4": {
"Jacotheron\\LaravelMux\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"Jacotheron\\LaravelMux\\LaravelMuxServiceProvider"
]
}
},
"license": "MIT",
"authors": [
{
"name": "Jacotheron",
"email": "[email protected]"
}
],
"minimum-stability": "dev"
}