PHPackages                             altelma/laravel-mailchimp - 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. altelma/laravel-mailchimp

ActiveLibrary[API Development](/categories/api)

altelma/laravel-mailchimp
=========================

A packages provide you to connect with mailchimp API v3, so easiest.

2.0(4y ago)56.0k↓80%MITPHP &gt;=7.4

Since May 15Compare

[ Source](https://github.com/ALTELMA/laravel-mailchimp)[ Packagist](https://packagist.org/packages/altelma/laravel-mailchimp)[ RSS](/packages/altelma-laravel-mailchimp/feed)WikiDiscussions Synced today

READMEChangelog (3)DependenciesVersions (5)Used By (0)

[![JWT](https://camo.githubusercontent.com/1e9639025e0267c159489a183df5fd3047aa96952b6eedb2f08b5e4b4ce089d5/68747470733a2f2f696d616765732e6374666173736574732e6e65742f3367377330337077796a687a2f32497a584f595743453047474d4d4d634761514755612f34313730373536383134303963396634336133353961393939343938633731622f62696763617274656c5f68656164657278322e706e673f773d39393826666d3d77656270)](https://camo.githubusercontent.com/1e9639025e0267c159489a183df5fd3047aa96952b6eedb2f08b5e4b4ce089d5/68747470733a2f2f696d616765732e6374666173736574732e6e65742f3367377330337077796a687a2f32497a584f595743453047474d4d4d634761514755612f34313730373536383134303963396634336133353961393939343938633731622f62696763617274656c5f68656164657278322e706e673f773d39393826666d3d77656270)

Laravel MailChimp
=================

[](#laravel-mailchimp)

[![Total Downloads](https://camo.githubusercontent.com/926d83d54f21e3fe4d89ac5acb25225d98a6bf58ef5ab5337646af70a9e8c38c/68747470733a2f2f706f7365722e707567782e6f72672f414c54454c4d412f6c61726176656c2d6d61696c6368696d702f642f746f74616c2e737667)](https://packagist.org/packages/altelma/laravel-mailchimp)

A packages provides you to connect mailchimp API v3

### Setup

[](#setup)

- Run `$ composer require altelma/laravel-mailchimp`
- **(Only for Laravel 5.5 or minor)** Add provider to config/app.php

```
providers => [
        Altelma\LaravelMailChimp\MailChimpServiceProvider::class
],

```

Make sure you never use "MailChimp" or exists this in your project. After you finish config all run artisan to create config

```
php artisan vendor:publish

```

For optional if you want to use Alias class you can add this to config/app.php

```
aliases => [
      'MailChimp' => ALtelma\LaravelMailChimp\MailChimpFacade::class
]

```

#### Lumen

[](#lumen)

- Add provider to `bootstrap/app.php`

```
$app->register(Altelma\LaravelMailChimp\MailChimpServiceProvider::class);

```

- Copy `vendor/altelma/laravel-mailchimp/config/mailchimp.php` to `config/mailchimp.php`
- Add config to `bootstrap/app.php`

```
$app->configure('mailchimp');
```

- Allow call package via Facade, uncomment

```
$app->withFacades();

if (!class_exists('MailChimp')) {
    class_alias('Altelma\LaravelMailChimp\LaravelMailChimp', 'MailChimp');
}
```

Usage
-----

[](#usage)

```
$mc = new MailChimp('Your API KEY');
$results = $mc->get('lists/your_directory_list/members');
echo json_decode($results);

// or
return reponse()-json($results);

// With Alias
$results = MailChimp::get('lists/your_directory_list/members');
echo json_decode($results);

// or
return reponse()-json($results);

```

Bug report
----------

[](#bug-report)

This package is not perfect right, but it can improve together. If you've found bug or have any suggestions. Send that to me or create a new issue. Thank you to use it.

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity63

Established project with proven stability

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 ~515 days

Total

3

Last Release

1576d ago

Major Versions

v1.1 → 2.02022-03-11

PHP version history (2 changes)v1.0PHP &gt;=5.5.0

2.0PHP &gt;=7.4

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/4938568?v=4)[Phongthorn](/maintainers/ALTELMA)[@ALTELMA](https://github.com/ALTELMA)

---

Tags

phpapimailchimpv3

### Embed Badge

![Health badge](/badges/altelma-laravel-mailchimp/health.svg)

```
[![Health](https://phpackages.com/badges/altelma-laravel-mailchimp/health.svg)](https://phpackages.com/packages/altelma-laravel-mailchimp)
```

###  Alternatives

[pacely/mailchimp-apiv3

Simple API wrapper for Mailchimp API V3

95659.2k2](/packages/pacely-mailchimp-apiv3)[welp/mailchimp-bundle

MailChimp API V3 Symfony Bundle

45364.7k1](/packages/welp-mailchimp-bundle)[vatps/mailchimp-rest-api

Very Easy to use MailChimp REST Enabled API 3.0 Wrapper Class.

2879.5k](/packages/vatps-mailchimp-rest-api)

PHPackages © 2026

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