davido / bbb-api
This is to integrate bigbluebuton api to laravel
Installs: 1 107
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^8.0.2 | ^8.1
- bigbluebutton/bigbluebutton-api-php: ^2.1
- laravel/framework: ^9.23 | ^10.0 | ^11.0
- laravel/pint: ^1.1
README
This is a laravel wrapper for BigBlueButton API
Requirements
- Laravel 9.23 or above.
Installation
Require package in your composer.json and update composer. This downloads the package and the official bigbluebutton php library.
composer require davido/bbb-api
Usage
You can define Big blue button secret key and server url in two ways.
- Define in .env file
BBB_SECURITY_SALT =bbb_secret_key
BBB_SERVER_BASE_URL=https://example.com/bigbluebutton/
- Define in config/bbb.php
'BBB_SECURITY_SALT' => 'bbb_secret_key',
'BBB_SERVER_BASE_URL' => 'https://example.com/bigbluebutton/',
- You can publish the vendor files with
php artisan vendor:publish --provider="DavidO\BBBApi\BigbluebuttonProviderService" --tag="config"
Note this will create the file bbb.php in the config folder