forked from bigbluebutton/bigbluebutton-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 982 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
{
"name": "bigbluebutton/bigbluebutton-api-php",
"type": "library",
"description": "BigBlueButton PHP API Library for PHP",
"keywords": [
"bigbluebutton",
"bbb",
"api"
],
"homepage": "http://bigbluebutton.org/",
"license": "GPL-3.0",
"authors": [
{
"name": "Ghazi Triki",
"email": "ghazi.nocturne@gmail.com",
"role": "Developer"
}
],
"repositories": {
"packagist": {
"url": "https://packagist.org",
"type": "composer"
}
},
"require": {
"php": ">=5.4",
"ext-curl": "*",
"ext-simplexml": "*",
"ext-mbstring": "*"
},
"require-dev": {
"php": ">=7.0",
"ext-mbstring": "*",
"composer/composer": "1.7.*@dev",
"phpunit/phpunit": "6.*",
"fzaninotto/faker": "~1.8.0",
"friendsofphp/php-cs-fixer": "2.*",
"squizlabs/php_codesniffer": "3.*",
"php-coveralls/php-coveralls": "2.1.*"
},
"autoload": {
"psr-4": {
"BigBlueButton\\": "src"
}
}
}