PHPackages                             levizoesch/laravel-zep-sdk - 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. levizoesch/laravel-zep-sdk

ActiveLibrary[API Development](/categories/api)

levizoesch/laravel-zep-sdk
==========================

A simple SDK to consume Zep for Laravel.

1.0.2(2y ago)212MITPHPPHP ^8.0|^8.1|^8.2

Since May 20Pushed 2y ago1 watchersCompare

[ Source](https://github.com/levizoesch/laravel-zep-sdk)[ Packagist](https://packagist.org/packages/levizoesch/laravel-zep-sdk)[ Docs](https://github.com/levizoesch/laravel-zep-sdk)[ RSS](/packages/levizoesch-laravel-zep-sdk/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (3)Dependencies (11)Versions (4)Used By (0)

Zep PHP SDK for Laravel
=======================

[](#zep-php-sdk-for-laravel)

This is an unofficial Zep SDK for Laravel.

This was written around  and is not an official SDK.

Last Updated 05/2024
====================

[](#last-updated-052024)

> **NOTE**: This is a WIP, and not yet stable for production.

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

[](#installation)

```
composer require levizoesch/laravel-zep-sdk
```

Publish configuration file.

```
php artisan vendor:publish --tag=zep-sdk-config
```

Set Zep Token

```
php artisan env:set ZEP_TOKEN ABC_123-TOKEN
```

---

Examples
========

[](#examples)

User
----

[](#user)

Examples to handle user.

```
$zepClient = new ZepClient('YOUR_ZEP_TOKEN');
```

Create a Laravel Controller, and begin your crud actions.

```
// Create a new user
$newUser = $zepClient->createNewUser([
    'email' => 'fake@email.com',
    'first_name' => 'Levi',
    'last_name' => 'Zoesch',
    'metadata' => null,
    'user_id' => Str::uuid()
]);
//dd('create',$result);

// Find the user by ID.
$findResult = $zepClient->getByUserId($newUser->user_id);
//dd('find',$find);

// Update the user.
$updateResult = $zepClient->updateByUserId($findResult->user_id, [
    'first_name' => 'LEVI',
    'last_name' => 'UPDATED',
    'metadata' => null,
    'user_id' => $findResult->user_id
]);
//dd('updated',$updateResult);

$listUserSessions = $zepClient->getSessionsByUserId($updateResult->user_id);
//dd('User Sessions:', $listUserSessions);

// Destroy the user now, since weve stepped through everything.
$destroyedResult = $zepClient->destroyByUserId($findResult->user_id);
dd('Destroyed User:', $destroyedResult);

```

Messages
--------

[](#messages)

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

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

775d ago

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

aigetzeplaravellong-term-memorylong-term-storagephp-sdkzepapilaravelsdkopen-sourcezeplevizoesch

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/levizoesch-laravel-zep-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/levizoesch-laravel-zep-sdk/health.svg)](https://phpackages.com/packages/levizoesch-laravel-zep-sdk)
```

###  Alternatives

[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.1k11.2M100](/packages/dedoc-scramble)[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/packages/spatie-laravel-pdf)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

816333.8k3](/packages/defstudio-telegraph)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5021.9k](/packages/simplestats-io-laravel-client)[lettermint/lettermint-laravel

Official Lettermint driver for Laravel

1190.2k1](/packages/lettermint-lettermint-laravel)

PHPackages © 2026

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