acrossoffwest / zoom-sdk
zoom API client for Laravel
0.0.3
2020-05-26 21:54 UTC
Requires
- php: >=7.1
- firebase/php-jwt: ^5.0
- guzzlehttp/guzzle: ~6.0|~5.0|~4.0
This package is auto-updated.
Last update: 2024-10-27 08:09:49 UTC
README
Fork of Fessnik/zoom
Laravel Wrapper for zoom api ( https://zoom.github.io/api/ )
Installation
Step 1: Composer
From the command line, run:
composer require acrossoffwest/zoom-sdk
Step 2: Service Provider (For Laravel/Lumen < 5.5)
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);
Step 3: Publish Configs
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
Usage
$zoom = new Zoom();
$zoom->users->list()
RESOURCES
Users
Meetings
Step 4: Remove the package
If you answered "no" on "Remove this package?" question after scaffolding you can remove
composer remove acrossoffwest/zoom-sdk
Laravel < 5.5
Open config/app.php
and remove the provider:
Acrossoffwest\Zoom\ZoomServiceProvider::class
Lumen < 5.5
Open bootstrap/app.php
and remove the provider:
$app->register(Acrossoffwest\Zoom\ZoomServiceProvider::class);