-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.26 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
{
"name": "rightthisminute/jw-platform-php",
"description": "A PHP client library for interacting with the JW Platform APIs.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Donovan Mueller",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/RightThisMinute/php-structure-decoder.git"
}
],
"require": {
"php": ">=7.3.0 <8.1",
"guzzlehttp/guzzle": "~6.0",
"ext-json": "*",
"rightthisminute/php-structure-decoder": "dev-master",
"lstrojny/functional-php": "^1.11",
"firebase/php-jwt": "^5.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"RightThisMinute\\JWPlatform\\": "./src"
},
"files": [
"src/common.php",
"src/Delivery/media.php",
"src/Delivery/playlists.php",
"src/Management/v1/accounts/templates.php",
"src/Management/v1/videos.php",
"src/Management/v1/videos/conversions.php",
"src/Management/v2/endpoint/media.php",
"src/Management/v2/endpoint/webhooks.php"
]
}
}