-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.32 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
45
46
47
48
{
"name": "owenvoke/livepeer",
"type": "library",
"description": "An object oriented PHP wrapper for the Livepeer API",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"php-http/client-common": "^2.4",
"php-http/discovery": "^1.14",
"php-http/httplug": "^2.2",
"php-http/multipart-stream-builder": "^1.1",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.4",
"guzzlehttp/psr7": "^2.1",
"http-interop/http-factory-guzzle": "^1.2",
"pestphp/pest": "^1.20",
"php-http/mock-client": "^1.5",
"phpstan/phpstan": "^0.12.99",
"symfony/var-dumper": "^5.3.8"
},
"autoload": {
"psr-4": {
"OwenVoke\\Livepeer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OwenVoke\\Livepeer\\Tests\\": "tests/"
}
},
"scripts": {
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test:unit": "pest --colors=always",
"test": [
"@test:types",
"@test:unit"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}