-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.96 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.96 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "oneofftech/k-link-streaming-upload-client",
"description": "Upload videos to a K-Link Streaming Service",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "alessio",
"email": "alessio.vertemati@oneofftech.xyz"
}
],
"require": {
"php": ">=7.2.5",
"php-http/client-implementation": "^1.0|^2.0",
"php-http/message": "^1.6",
"php-http/discovery": "^1.3",
"doctrine/annotations": "^1.4",
"doctrine/cache": "^1.6",
"php-http/client-common": "^1.5|^2.0",
"symfony/process": "^4.0|^5.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.6",
"http-interop/http-factory-guzzle": "^1.0",
"mockery/mockery": "^1.4",
"php-http/curl-client": "~1.7.0|^2.0",
"php-http/mock-client": "^1.0",
"phpunit/phpunit": "^8.5",
"ramsey/uuid": "^4.0"
},
"autoload": {
"psr-4": {
"Oneofftech\\KlinkStreaming\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"tus-client-binary": {
"windows": "https://github.com/avvertix/tus-client-cli/releases/download/v0.3.0/tus-client-win.exe",
"linux": "https://github.com/avvertix/tus-client-cli/releases/download/v0.3.0/tus-client-linux",
"darwin": "https://github.com/avvertix/tus-client-cli/releases/download/v0.3.0/tus-client-macos"
}
},
"scripts": {
"post-install-cmd": [
"Oneofftech\\KlinkStreaming\\Installer::downloadTusClient"
],
"post-update-cmd": [
"Oneofftech\\KlinkStreaming\\Installer::downloadTusClient"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}