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(1y ago)212MITPHPPHP ^8.0|^8.1|^8.2

Since May 20Pushed 1y 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 1mo 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

28

—

LowBetter than 54% of packages

Maintenance31

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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

723d 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

[missael-anda/laravel-whatsapp

A Whatsapp Business Cloud API wrapper for Laravel.

677.5k](/packages/missael-anda-laravel-whatsapp)[claude-php/claude-php-sdk-laravel

Laravel integration for the Claude PHP SDK - Anthropic Claude API

5010.8k](/packages/claude-php-claude-php-sdk-laravel)

PHPackages © 2026

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