PHPackages                             bkuhl/easychimp - 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. [Mail &amp; Notifications](/categories/mail)
4. /
5. bkuhl/easychimp

AbandonedArchivedLibrary[Mail &amp; Notifications](/categories/mail)

bkuhl/easychimp
===============

V1.0.1(8y ago)162.7k1MITPHPPHP &gt;=7.0.0

Since Nov 21Pushed 2y ago1 watchersCompare

[ Source](https://github.com/bkuhl/easychimp)[ Packagist](https://packagist.org/packages/bkuhl/easychimp)[ RSS](/packages/bkuhl-easychimp/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (5)Dependencies (4)Versions (6)Used By (0)

Easychimp
=========

[](#easychimp)

[![Latest Stable Version](https://camo.githubusercontent.com/8b3a2150c5f1ed2c63b7c78f71f9e30f496fc7a745aff1cbef6282436cad959b/68747470733a2f2f706f7365722e707567782e6f72672f626b75686c2f656173796368696d702f762f737461626c652e706e67)](https://packagist.org/packages/bkuhl/easychimp) [![Total Downloads](https://camo.githubusercontent.com/87f477b20b1c87f4078e0b35a9b5513d6c0d1ab052924237148f8d5d6561e9c4/68747470733a2f2f706f7365722e707567782e6f72672f626b75686c2f656173796368696d702f646f776e6c6f6164732e706e67)](https://packagist.org/packages/bkuhl/easychimp) [![Build Status](https://camo.githubusercontent.com/5205fa2e8b5f0f8c4e272385889b8098edf846847ef2259fe2e3021438f6d30f/68747470733a2f2f7472617669732d63692e6f72672f626b75686c2f656173796368696d702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/bkuhl/easychimp) [![Scrutinizer Code Quality](https://camo.githubusercontent.com/9f66c24e1c665223e33f271c41034ae95f7300ac3419b79d20efdab6ebbcdb6d/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f626b75686c2f656173796368696d702f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/bkuhl/easychimp/?branch=master)

> This project has been deprecated in favor of using [Mailchimp's PHP SDK](https://github.com/mailchimp/mailchimp-marketing-php) directly.

Easychimp makes integrating a PHP/Laravel app with Mailchimp's API (version 3) dead simple. Functionality is currently limited to managing subscriptions on a list because that's what I needed for a project. I'd welcome pull requests that add additional functionality.

- [Usage](#usage)
- [Installation](#installation)
- [Laravel](#laravel)
- [Contributing](https://github.com/bkuhl/easychimp/blob/master/CONTRIBUTING.md)

Usage
=====

[](#usage)

```
$easychimp = new Easychimp\Easychimp($apiKey);
$easychimp->validateKey(); // throws InvalidApiKey
$list = $easychimp->mailingList($listId);

$list->exists(); // boolean
$list->isOnList($email); // boolean
$list->subscribe($email, $firstName = null, $lastName = null, ...); // boolean
$list->unsubscribe($email); // boolean
$list->subscriberInfo($email); // []
$list->updateSubscriber($email, $firstName = null, $lastName = null, ...); // boolean

// Interests are labeled as "Groups" in the Mailchimp UI
$list->interestCategories(); // []
$list->interests($interestCategoryId); // []
```

Installation
============

[](#installation)

```
composer require bkuhl/easychimp:~1.0

```

To use the [facade](http://laravel.com/docs/master/facades), add the following to `config/app.php`:

```
'aliases' => [
    ...
    'Easychimp' => Easychimp\MailchimpFacade::class,
]
```

Environment Variables
---------------------

[](#environment-variables)

Define the `MAILCHIMP_API_KEY` environmental variable. [Get your API key here](https://us1.admin.mailchimp.com/account/api-key-popup/).

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 95.1% 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 ~168 days

Total

5

Last Release

3152d ago

Major Versions

v0.3 → v1.02016-11-02

PHP version history (2 changes)v0.1PHP &gt;=5.5.0

v1.0PHP &gt;=7.0.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/27b36d1b791b775002187bab1daf9eda7c676290aa5ba9891497c376b2b3c69a?d=identicon)[bkuhl](/maintainers/bkuhl)

---

Top Contributors

[![bkuhl](https://avatars.githubusercontent.com/u/524933?v=4)](https://github.com/bkuhl "bkuhl (39 commits)")[![aydot](https://avatars.githubusercontent.com/u/5358010?v=4)](https://github.com/aydot "aydot (2 commits)")

### Embed Badge

![Health badge](/badges/bkuhl-easychimp/health.svg)

```
[![Health](https://phpackages.com/badges/bkuhl-easychimp/health.svg)](https://phpackages.com/packages/bkuhl-easychimp)
```

###  Alternatives

[mckenziearts/laravel-notify

Flexible flash notifications for Laravel

1.7k1.1M5](/packages/mckenziearts-laravel-notify)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/apn

Apple APN Push Notification Channel

2021.9M4](/packages/laravel-notification-channels-apn)[laravel-notification-channels/microsoft-teams

A Laravel Notification Channel for Microsoft Teams

1603.0M7](/packages/laravel-notification-channels-microsoft-teams)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[illuminate/mail

The Illuminate Mail package.

5910.1M391](/packages/illuminate-mail)

PHPackages © 2026

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