-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.2 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (45 loc) · 1.2 KB
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
{
"name": "xabbuh/panda-client",
"type": "library",
"description": "PHP client for the Panda encoding REST-API",
"keywords": ["Panda", "video encoding", "REST", "client"],
"homepage": "https://github.com/xabbuh/panda-client",
"license": "MIT",
"authors": [
{
"name": "Christian Flothmann",
"homepage": "https://github.com/xabbuh"
}
],
"require": {
"php": "^7.1|^8.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.2.1",
"php-http/httplug": "^1.1 || ^2.0",
"php-http/message": "^1.5",
"symfony/http-foundation": "^4.4|^5.1",
"symfony/serializer": "^4.4|^5.1"
},
"require-dev": {
"guzzle/guzzle": "~3.7",
"guzzlehttp/psr7": "^1.4",
"php-http/mock-client": "^1.0",
"symfony/phpunit-bridge": "^5.1"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Xabbuh\\PandaClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xabbuh\\PandaClient\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"1.x-dev": "1.5.x-dev"
}
}
}