forked from bigbluebutton/bigbluebutton-api-php
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
151 lines (151 loc) · 4.47 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"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\u00edguez",
"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": ">=8.1",
"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": {
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"symfony/dotenv": "^5.4|^6.4|^7.0",
"symfony/http-client-contracts": "^1.1|^2.0|^3.0",
"symfony/http-client": "^5.4|^6.4|^7.0",
"symfony/process": "^5.4|^6.4|^7.0",
"nyholm/psr7": "^1.4"
},
"autoload": {
"psr-4": {
"BigBlueButton\\": [
"src",
"tests/integration"
]
}
},
"autoload-dev": {
"psr-4": {
"BigBlueButton\\Tests\\Common\\": [
"tests/common"
],
"BigBlueButton\\Tests\\Functional\\": [
"tests/functional"
],
"BigBlueButton\\Tests\\Integration\\": [
"tests/integration"
],
"BigBlueButton\\Tests\\Unit\\": [
"tests/unit"
]
}
},
"scripts": {
"test": "tools/phpunit --testsuite=\"BigBlueButton unit test suite\"",
"test-integration": "tools/phpunit --testsuite=\"BigBlueButton integration test suite\"",
"test-functional": "tools/phpunit --testsuite=\"BigBlueButton functional test suite\" --exclude-group=functional-legacy",
"cs-fix": "tools/php-cs-fixer fix --allow-risky=yes",
"cs-test": "tools/php-cs-fixer fix --dry-run --allow-risky=yes",
"psalm": "tools/psalm --threads=1",
"psalm-clear": "tools/psalm --clear-cache && tools/psalm --clear-global-cache",
"psalm-fix": "tools/psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType",
"phpstan": "tools/phpstan analyse",
"rector": "tools/rector process --dry-run src/ tests/",
"rector-fix": "tools/rector process src/ tests/",
"post-install-cmd": "tools/composer-git-hooks add --ignore-lock",
"post-update-cmd": "tools/composer-git-hooks update"
},
"extra": {
"hooks": {
"pre-commit": [
"tools/php-cs-fixer fix --dry-run --allow-risky=yes"
],
"pre-push": [
"tools/phpunit --testsuite=\"BigBlueButton unit test suite,BigBlueButton integration test suite\"",
"tools/psalm --threads=1",
"tools/phpstan analyse",
"tools/rector process --dry-run src/ tests/"
],
"post-merge": "composer install",
"post-checkout": "composer install"
},
"cotor": {
"brainmaestro/composer-git-hooks": "^2.8",
"extensions": {
"phpunit/phpunit": {
"fakerphp/faker": "1.20.*"
}
},
"friendsofphp/php-cs-fixer": "^3.3",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9",
"rector/rector": "^1.0",
"vimeo/psalm": "^5.23"
}
}
}