PHPackages                             clpt/microsoftgraph-laravel - 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. clpt/microsoftgraph-laravel

ActiveLibrary[API Development](/categories/api)

clpt/microsoftgraph-laravel
===========================

Laravel wrapper for the microsoft graph api

024PHP

Since Feb 3Pushed 3y agoCompare

[ Source](https://github.com/clptwebdev/microsoftgraph-laravel)[ Packagist](https://packagist.org/packages/clpt/microsoftgraph-laravel)[ RSS](/packages/clpt-microsoftgraph-laravel/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

About microsoftgraph-laravel
----------------------------

[](#about-microsoftgraph-laravel)

This package allows you to connect microsoft graph api (events) to create calendar events on a users 365 profile

Example use case
----------------

[](#example-use-case)

```
use Carbon\Carbon;
use Clpt\MicrosoftGraph\MicrosoftGraph;
use Clpt\MicrosoftGraph\Requests\CreateBody;
use Clpt\MicrosoftGraph\Requests\CreateCalendarEvent;
use Clpt\MicrosoftGraph\Requests\CreateEnd;
use Clpt\MicrosoftGraph\Requests\CreateLocation;
use Clpt\MicrosoftGraph\Requests\CreateStart;

 $calendar = new CreateCalendarEvent(
                    subject: 'Example Subject',
                    start: new CreateStart(
                        dateTime: \Carbon\Carbon::now()->format('Y-m-d\TH:i:s'),
                        timezone: config('app.timezone'),
                    ),
                    end: new CreateEnd(
                        dateTime: \Carbon\Carbon::now()->addDay()->format('Y-m-d\TH:i:s'),
                        timezone: config('app.timezone'),
                    ),
                    body: new CreateBody(
                        content: "Example event content"
                    ),
                    location: new CreateLocation());

                    //adds ability for online teams meetings

                    $calendar->setOnlineMeeting();
                    $calendar->setAttendees(['test@gmail.com' , 'test2@gmail.com']);

                    //sends the data with guzzle
                    MicrosoftGraph::event($calendar, config("microsoftgraph.uuid"), config("microsoftgraph.key"));
```

###  Health Score

15

—

LowBetter than 3% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity23

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/1891fa792e43c3867146c6c40b9d177774ab0e14f3d59ff8233af8ae045d9abe?d=identicon)[Elliot-putt](/maintainers/Elliot-putt)

---

Top Contributors

[![Elliot-putt](https://avatars.githubusercontent.com/u/71373207?v=4)](https://github.com/Elliot-putt "Elliot-putt (3 commits)")

### Embed Badge

![Health badge](/badges/clpt-microsoftgraph-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/clpt-microsoftgraph-laravel/health.svg)](https://phpackages.com/packages/clpt-microsoftgraph-laravel)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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