PHPackages                             chrisreedio/laravel-azure-graph - 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. chrisreedio/laravel-azure-graph

ActiveLibrary[API Development](/categories/api)

chrisreedio/laravel-azure-graph
===============================

Provides an interface to the Azure Graph

v0.3.0(1y ago)14.6k↓20.6%[2 PRs](https://github.com/chrisreedio/laravel-azure-graph/pulls)1MITPHPPHP ^8.2

Since Oct 31Pushed 1y ago1 watchersCompare

[ Source](https://github.com/chrisreedio/laravel-azure-graph)[ Packagist](https://packagist.org/packages/chrisreedio/laravel-azure-graph)[ Docs](https://github.com/chrisreedio/laravel-azure-graph)[ RSS](/packages/chrisreedio-laravel-azure-graph/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (9)Dependencies (16)Versions (13)Used By (1)

Provides an interfaces to the Azure Graph
=========================================

[](#provides-an-interfaces-to-the-azure-graph)

[![Latest Version on Packagist](https://camo.githubusercontent.com/3c04d0f37fb84f2f88a465772cd0ed1e16a6e623b3fee9855c06a70145ac0064/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636872697372656564696f2f6c61726176656c2d617a7572652d67726170682e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/chrisreedio/laravel-azure-graph)[![GitHub Tests Action Status](https://camo.githubusercontent.com/74fb23de9d5d6e0e972b4cbf757c20daeceacb234155750de39b0444901b7bc8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f636872697372656564696f2f6c61726176656c2d617a7572652d67726170682f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/chrisreedio/laravel-azure-graph/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/cc876a11f5b32cd27928e7984189dadde28f1ba37f8f442ef6ce9769174f8b8b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f636872697372656564696f2f6c61726176656c2d617a7572652d67726170682f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/chrisreedio/laravel-azure-graph/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/d3ed65f025e9007519823ef3b36fda8637635af7569431ec1c74da9c8851c34a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636872697372656564696f2f6c61726176656c2d617a7572652d67726170682e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/chrisreedio/laravel-azure-graph)

Provides an interface to the Azure Graph API.

Warning

This package is still in development and is not ready for production use.

It currently only supports delegated authentication via a user supplied token.

The only call supported is to fetch a user's groups via the `memberOf` endpoint.

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

[](#installation)

You can install the package via composer:

```
composer require chrisreedio/laravel-azure-graph
```

Usage
-----

[](#usage)

This sample shows how to get all of a user's groups via a delegated call to the `memberOf` endpoint.

```
$graph = new GraphConnector('user-token');
$paginator = $graph->paginate(new MemberOfRequest());
$adGroups = $paginator->collect();

// Dump the user's groups
dd($adGroups->pluck('displayName')->all());
```

Config
------

[](#config)

You can publish the config file with:

```
php artisan vendor:publish --tag="laravel-azure-graph-config"
```

This is the contents of the published config file:

```
return [
    'pagination' => [
        'limit' => 100,
    ],
];
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Chris Reed](https://github.com/chrisreedio)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance38

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 90.6% 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 ~46 days

Recently: every ~1 days

Total

9

Last Release

559d ago

PHP version history (2 changes)v0.0.1PHP ^8.1

v0.1.0-beta1PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/edf125933a93f1f09822d1679b36b2d6deed75b2380f6e1c57d54cd52a8db29d?d=identicon)[chrisreedio](/maintainers/chrisreedio)

---

Top Contributors

[![chrisreedio](https://avatars.githubusercontent.com/u/77644584?v=4)](https://github.com/chrisreedio "chrisreedio (77 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (5 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (3 commits)")

---

Tags

laravelchrisreediolaravel-azure-graph

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/chrisreedio-laravel-azure-graph/health.svg)

```
[![Health](https://phpackages.com/badges/chrisreedio-laravel-azure-graph/health.svg)](https://phpackages.com/packages/chrisreedio-laravel-azure-graph)
```

###  Alternatives

[codebar-ag/laravel-docuware

DocuWare integration with Laravel

1221.1k](/packages/codebar-ag-laravel-docuware)[codebar-ag/laravel-zammad

Zammad integration with Laravel

106.1k](/packages/codebar-ag-laravel-zammad)[njoguamos/laravel-plausible

A laravel package for interacting with plausible analytics api.

208.8k](/packages/njoguamos-laravel-plausible)

PHPackages © 2026

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