forked from bigbluebutton/bigbluebutton-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1013 Bytes
/
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": "bigbluebutton/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"
}
],
"repositories": {
"packagist": {
"url": "https://packagist.org",
"type": "composer"
}
},
"require": {
"php": ">=7.1",
"ext-curl": "*",
"ext-simplexml": "*",
"ext-mbstring": "*"
},
"require-dev": {
"ext-mbstring": "*",
"composer/composer": "^1.10.24",
"phpunit/phpunit": "^8.5",
"fakerphp/faker": "^1.17",
"friendsofphp/php-cs-fixer": "^2.19",
"squizlabs/php_codesniffer": "^3.6",
"php-coveralls/php-coveralls": "^2.5.2"
},
"options": {
"symlink": false
},
"autoload": {
"psr-4": {
"BigBlueButton\\": "src"
}
}
}