forked from littleredbutton/bigbluebutton-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
127 lines (127 loc) · 3.91 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "littleredbutton/bigbluebutton-api-php",
"type": "library",
"description": "BigBlueButton PHP API Library for PHP",
"keywords": [
"bigbluebutton",
"bbb",
"api"
],
"homepage": "http://bigbluebutton.org/",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Ghazi Triki",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Klaus Herberth",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Samuel Weirich",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Jignesh Joisar",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Pablo Ogando",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Alfonso Rodríguez",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Felix Jacobi",
"email": "[email protected]",
"role": "Developer"
}
],
"repositories": {
"packagist": {
"url": "https://packagist.org",
"type": "composer"
}
},
"support": {
"issues": "https://github.com/littleredbutton/bigbluebutton-api-php/issues",
"source": "https://github.com/littleredbutton/bigbluebutton-api-php/",
"docs": "https://github.com/littleredbutton/bigbluebutton-api-php/blob/master/README.md"
},
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-simplexml": "*",
"ext-mbstring": "*",
"ext-json": "*"
},
"suggest": {
"psr/http-client-implementation": "To use the PsrHttpClientTransport.",
"psr/http-factory-implementation": "To use the PsrHttpClientTransport.",
"psr/http-message": "To use the PsrClientHttpTransport.",
"symfony/http-client-contracts": "To use the SymfonyHttpClientTransport.",
"symfony/http-client": "To use the SymfonyHttpClientTransport."
},
"require-dev": {
"composer/composer": "^1.10.0",
"phpunit/phpunit": "^8",
"friendsofphp/php-cs-fixer": "2.*",
"squizlabs/php_codesniffer": "3.*",
"php-coveralls/php-coveralls": "^2.4.0",
"brainmaestro/composer-git-hooks": "^2.8",
"vimeo/psalm": "^4.5",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"symfony/dotenv": "^3.4|^4.0|^5.0",
"symfony/http-client-contracts": "^1.1|^2.0",
"symfony/http-client": "^4.4|^5.0",
"symfony/process": "^3.4|^4.0|^5.0",
"nyholm/psr7": "^1.4",
"fakerphp/faker": "^1.14"
},
"autoload": {
"psr-4": {
"BigBlueButton\\": ["src", "tests/integration"]
}
},
"autoload-dev": {
"psr-4": {
"BigBlueButton\\Tests\\Functional\\": ["tests/functional"]
}
},
"scripts": {
"test": "vendor/bin/phpunit --testsuite=\"BigBlueButton unit test suite\"",
"test-integration": "vendor/bin/phpunit --testsuite=\"BigBlueButton integration test suite\"",
"test-functional": "vendor/bin/phpunit --testsuite=\"BigBlueButton functional test suite\" --exclude-group=functional-legacy",
"cs-fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"cs-test": "vendor/bin/php-cs-fixer fix --dry-run --allow-risky=yes",
"psalm": "psalm --threads=1",
"psalm-clear": "psalm --clear-cache && psalm --clear-global-cache",
"psalm-fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType",
"post-install-cmd": "vendor/bin/cghooks add --ignore-lock",
"post-update-cmd": "vendor/bin/cghooks update"
},
"extra": {
"hooks": {
"pre-commit": [
"vendor/bin/php-cs-fixer fix --dry-run --allow-risky=yes"
],
"pre-push": [
"vendor/bin/phpunit --testsuite=\"BigBlueButton unit test suite,BigBlueButton integration test suite\"",
"vendor/bin/psalm --threads=1"
],
"post-merge": "composer install",
"post-checkout": "composer install"
}
}
}