PHPackages                             diaa/laravel-zoom-meeting - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. diaa/laravel-zoom-meeting

ActiveLibrary[API Development](/categories/api)

diaa/laravel-zoom-meeting
=========================

sample package for laravel applications to integrate with Zoom Oauth application

v1.1.0(3y ago)025MITPHP

Since Jul 2Pushed 3y ago1 watchersCompare

[ Source](https://github.com/bashmohandes7/Zoom)[ Packagist](https://packagist.org/packages/diaa/laravel-zoom-meeting)[ RSS](/packages/diaa-laravel-zoom-meeting/feed)WikiDiscussions master Synced yesterday

READMEChangelog (3)DependenciesVersions (4)Used By (0)

Zoom Package With Laravel
=========================

[](#zoom-package-with-laravel)

sample package for laravel applications to integrate with Zoom Oauth application.

Installation
------------

[](#installation)

Install via composer

```
  composer require diaa/laravel-zoom-meeting
```

run migration

```
php artisan migrate
```

run vendor publish

```
 php artisan vendor:publish --tag="zoomconfig"
```

Environment Variables
---------------------

[](#environment-variables)

To run this package, you will need to add the following environment variables to your .env file

`ZOOM_CLIENT_ID`

`ZOOM_CLIENT_SECRET`

`ZOOM_REDIRECT_URL`

`ZOOM_BASE_URL`

How to use ?
------------

[](#how-to-use-)

### generate an authorization URL where a user can click and complete the authorization:

[](#generate-an-authorization-url-where-a-user-can-click-and-complete-the-authorization)

-create a blade file that contains a link to complete the authorization

```
$url = "https://zoom.us/oauth/authorize?response_type=code&client_id=".CLIENT_ID."&redirect_uri=".REDIRECT_URI.";
?>

Zoom Authorization
```

- Run the above file on the browser, click on the ‘Zoom Authorization’ link and complete the authorization.
- you should see a success message and the access token would store in your zoom\_oauths table.

Redirect Url:
-------------

[](#redirect-url)

- create a Route in web routes

```
use ZoomService\Zoom;
Route::post('/callback',function(){
  return Zoom::zoomCallback();
});
```

Create Zoom Meeting
-------------------

[](#create-zoom-meeting)

```
- this function to create a zoom meeting , just pass meeting data and settings params:
use ZoomService\Zoom;
$meetingData = [
  'topic' =>  'General Talk', // topic
            'type'            =>  2,
            'start_time'    => date('Y-m-dTh:i:00') . 'Z', // will start now
            'duration'        =>  40,
            'password'        =>  mt_rand(), // random password
            // 'timezone'		=> 'Africa/Cairo',
            'settings'        => [
                'host_video'            => false,
                'participant_video'        => true,
                'cn_meeting'            => false,
                'in_meeting'            => false,
                'join_before_host'        => true,
                'mute_upon_entry'        => true,
                'watermark'                => false,
                'use_pmi'                => false,
                'approval_type'            => 1,
                'registration_type'        => 1,
                'audio'                    => 'voip',
                'auto_recording'        => 'none',
                'waiting_room'            => false
            ]
];
Zoom::createMeeting($meetingData);
```

\-- it will return a meeting link to join via it.

License
-------

[](#license)

The Http Client Package is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

1097d ago

Major Versions

v0.1.0 → v1.0.02023-07-02

### Community

Maintainers

![](https://www.gravatar.com/avatar/646181da554e49bc2f55e73b2d5ae21c5f0019ea03f16d5608f240c24c3d1e1a?d=identicon)[bashmohandes7](/maintainers/bashmohandes7)

---

Top Contributors

[![bashmohandes7](https://avatars.githubusercontent.com/u/39373251?v=4)](https://github.com/bashmohandes7 "bashmohandes7 (10 commits)")

### Embed Badge

![Health badge](/badges/diaa-laravel-zoom-meeting/health.svg)

```
[![Health](https://phpackages.com/badges/diaa-laravel-zoom-meeting/health.svg)](https://phpackages.com/packages/diaa-laravel-zoom-meeting)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k15](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
