forked from muxinc/mux-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 970 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": "muxinc/mux-php",
"description": "Official Mux API wrapper for PHP projects, supporting both Mux Data and Mux Video. Not familiar with Mux? Check out https://mux.com/ for more information.",
"keywords": [
"php",
"sdk",
"rest",
"api",
"video",
"streaming"
],
"homepage": "https://mux.com",
"license": "MIT",
"authors": [
{
"name": "Mux SDK team",
"homepage": "https://mux.com",
"email": "sdks@mux.com"
}
],
"require": {
"php": ">=7.2.5",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.6",
"friendsofphp/php-cs-fixer": "~2.12"
},
"autoload": {
"psr-4": { "MuxPhp\\" : "MuxPhp/" }
},
"autoload-dev": {
"psr-4": { "MuxPhp\\" : "test/" }
}
}