acrossoffwest/zoom-sdk is a Laravel package for zoom api client for laravel.
It currently has 0 GitHub stars and 25 downloads on Packagist (latest version 0.0.3).
Install it with composer require acrossoffwest/zoom-sdk.
Discover more Laravel packages by acrossoffwest
or browse all Laravel packages to compare alternatives.
Last updated
From the command line, run:
composer require acrossoffwest/zoom-sdk
For your Laravel app, open config/app.php and, within the providers array, append:
Acrossoffwest\Zoom\ZoomServiceProvider::class
For your Lumen app, open bootstrap/app.php and, add this line:
$app->register(Acrossoffwest\Zoom\ZoomServiceProvider::class);
First from the command line, run:
php artisan vendor:publish --provider="Acrossoffwest\Zoom\ZoomServiceProvider"
After that you will see zoom.php file in config directory, where you add value for api_key and api_secret
$zoom = new Zoom();
$zoom->users->list()
Users
Meetings
If you answered "no" on "Remove this package?" question after scaffolding you can remove
composer remove acrossoffwest/zoom-sdk
Open config/app.php and remove the provider:
Acrossoffwest\Zoom\ZoomServiceProvider::class
Open bootstrap/app.php and remove the provider:
$app->register(Acrossoffwest\Zoom\ZoomServiceProvider::class);