PHPackages                             fuitad/gazelle-laravel-wrapper - 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. fuitad/gazelle-laravel-wrapper

ActiveLibrary[API Development](/categories/api)

fuitad/gazelle-laravel-wrapper
==============================

A Laravel wrapper for the Kitsu/Zou production tracker PHP client (fuitad/gazelle)

1.0.2(2mo ago)08MITPHPPHP ^8.1

Since Feb 26Pushed 2mo agoCompare

[ Source](https://github.com/Fuitad/gazelle-laravel-wrapper)[ Packagist](https://packagist.org/packages/fuitad/gazelle-laravel-wrapper)[ RSS](/packages/fuitad-gazelle-laravel-wrapper/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (4)Versions (4)Used By (0)

laravel-gazelle
===============

[](#laravel-gazelle)

A Laravel wrapper for [`fuitad/gazelle`](https://github.com/Fuitad/gazelle), the PHP client for the [Kitsu](https://kitsu.cg-wire.com) / [Zou](https://github.com/cgwire/zou) production tracker API.

Requirements
------------

[](#requirements)

- PHP 8.1+
- Laravel 10, 11, or 12

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

[](#installation)

```
composer require fuitad/gazelle-laravel-wrapper
```

The service provider and facade are registered automatically via Laravel's package auto-discovery.

Configuration
-------------

[](#configuration)

Publish the config file:

```
php artisan vendor:publish --tag=gazelle-config
```

Then set your values in `.env`:

```
GAZELLE_HOST=https://kitsu.example.com/api
GAZELLE_SSL_VERIFY=true
GAZELLE_USE_REFRESH_TOKEN=true
```

KeyDefaultDescription`GAZELLE_HOST``http://localhost/api`Base URL of your Kitsu / Zou API`GAZELLE_SSL_VERIFY``true`Verify SSL certificates`GAZELLE_USE_REFRESH_TOKEN``true`Auto-refresh access token on expiryUsage
-----

[](#usage)

### Via the Facade

[](#via-the-facade)

```
use GazelleLaravelWrapper\Facades\Gazelle;

// Authenticate
Gazelle::logIn('user@example.com', 'password');

// List all open projects
$projects = Gazelle::project->allOpenProjects();

// Get all shots for a project
$shots = Gazelle::shot->allShotsForProject($projects[0]);

// Log out
Gazelle::logOut();
```

### Via dependency injection

[](#via-dependency-injection)

```
use Gazelle\Gazelle;

class ProductionController extends Controller
{
    public function __construct(private readonly Gazelle $gazelle) {}

    public function index(): array
    {
        return $this->gazelle->project->allOpenProjects();
    }
}
```

### Using an existing token

[](#using-an-existing-token)

```
Gazelle::setToken('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...');

// Or with a refresh token
Gazelle::setToken([
    'access_token'  => 'eyJ...',
    'refresh_token' => 'eyJ...',
]);
```

### MFA login

[](#mfa-login)

```
// TOTP
Gazelle::logIn('user@example.com', 'password', totp: '123456');

// Email OTP
Gazelle::sendEmailOtp('user@example.com');
Gazelle::logIn('user@example.com', 'password', emailOtp: '654321');
```

Available Modules
-----------------

[](#available-modules)

All modules are accessible as properties on the `Gazelle` instance (or facade):

PropertyDescription`->asset`Assets, asset types, asset instances`->shot`Shots, sequences, episodes`->task`Tasks, task types, task statuses, comments`->project`Projects, project settings, team management`->person`People, departments, avatars`->user`Current-user-scoped queries`->files`Output files, working files, preview files, softwares`->casting`Shot / asset / episode casting`->edit`Edits`->entity`Generic entities and entity types`->studio`Studios`->sync`Event feed, project export / import`->playlist`Playlists`->concept`Concepts`->context`Admin/user-context-aware convenience wrappersSee the [fuitad/gazelle documentation](https://github.com/Fuitad/gazelle) for the full method reference of each module.

Testing
-------

[](#testing)

```
composer install
./vendor/bin/phpunit
```

License
-------

[](#license)

MIT

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance85

Actively maintained with recent releases

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity45

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

76d ago

### Community

Maintainers

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

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/fuitad-gazelle-laravel-wrapper/health.svg)

```
[![Health](https://phpackages.com/badges/fuitad-gazelle-laravel-wrapper/health.svg)](https://phpackages.com/packages/fuitad-gazelle-laravel-wrapper)
```

###  Alternatives

[mollie/laravel-mollie

Mollie API client wrapper for Laravel &amp; Mollie Connect provider for Laravel Socialite

3624.1M28](/packages/mollie-laravel-mollie)[mll-lab/laravel-graphiql

Easily integrate GraphiQL into your Laravel project

683.2M9](/packages/mll-lab-laravel-graphiql)[spatie/laravel-route-discovery

Auto register routes using PHP attributes

23645.0k2](/packages/spatie-laravel-route-discovery)[esign/laravel-conversions-api

A laravel wrapper package around the Facebook Conversions API

69145.4k](/packages/esign-laravel-conversions-api)[didww/didww-api-3-php-sdk

PHP SDK for DIDWW API 3

1218.2k](/packages/didww-didww-api-3-php-sdk)[surface/laravel-webfinger

A Laravel package to create an ActivityPub webfinger.

113.8k](/packages/surface-laravel-webfinger)

PHPackages © 2026

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