-
Notifications
You must be signed in to change notification settings - Fork 147
/
composer.json
59 lines (59 loc) · 1.66 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "opentok/opentok",
"description": "OpenTok is a platform for creating real time streaming video applications, created by TokBox.",
"type": "library",
"keywords": [
"TokBox",
"OpenTok",
"PHP",
"WebRTC",
"video",
"streaming"
],
"homepage": "https://github.com/opentok/Opentok-PHP-SDK",
"license": "MIT",
"authors": [
{
"name": "Ankur Oberoi",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Community contributors",
"homepage": "https://github.com/opentok/Opentok-PHP-SDK/graphs/contributors"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/opentok/Opentok-PHP-SDK/issues"
},
"require": {
"php": "^7.2|^8.0",
"ext-xml": "*",
"johnstevenson/json-works": "~1.1",
"firebase/php-jwt": "^6.0",
"guzzlehttp/guzzle": "~6.0|~7.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.4|^8.0",
"php-http/mock-client": "^1.4",
"helmich/phpunit-json-assert": "^3.0.0",
"squizlabs/php_codesniffer": "^3.1",
"php-http/guzzle7-adapter": "^1.0",
"phpstan/phpstan": "^0.12",
"rector/rector": "^0.8",
"phing/phing": "~2.16.0"
},
"scripts": {
"phpstan": "./vendor/bin/phpstan",
"phpcs": "./vendor/bin/phpcs",
"test": "./vendor/bin/phpunit --testdox"
},
"autoload": {
"psr-4": {
"OpenTok\\": "src/OpenTok",
"OpenTokTest\\": "tests/OpenTokTest"
}
}
}