forked from muxinc/mux-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.24 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
{
"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": "[email protected]"
}
],
"require": {
"php": ">=5.6.4",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.2",
"symfony/polyfill-php70": "^1.13",
"symfony/polyfill-php71": "^1.13",
"symfony/polyfill-php72": "^1.13"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.6",
"friendsofphp/php-cs-fixer": "~2.12",
"phpcompatibility/php-compatibility": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0"
},
"autoload": {
"psr-4": { "MuxPhp\\" : "MuxPhp/" }
},
"autoload-dev": {
"psr-4": { "MuxPhp\\" : "test/" }
}
}