PHPackages                             plasma-platform/esputnik - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. plasma-platform/esputnik

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

plasma-platform/esputnik
========================

Marketing automation system ESputnik.

0.2.0(7mo ago)0117MITPHPPHP &gt;=8.3

Since Oct 10Pushed 7mo agoCompare

[ Source](https://github.com/Plasma-Platform/esputnik)[ Packagist](https://packagist.org/packages/plasma-platform/esputnik)[ Docs](https://github.com/Plasma-Platform/esputnik)[ RSS](/packages/plasma-platform-esputnik/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

ESputnik
========

[](#esputnik)

[![Latest Stable Version](https://camo.githubusercontent.com/c4a00dd8345d39bb229e883d25760648891726fc86426b3420a102e425d01c48/68747470733a2f2f706f7365722e707567782e6f72672f6f737362726f776e69652f65737075746e696b2f762f737461626c65)](https://packagist.org/packages/ossbrownie/esputnik)[![Total Downloads](https://camo.githubusercontent.com/4247c756e28f52b2387dc59ae84a3b77092d05f11d884d915328ac33ab1b2b35/68747470733a2f2f706f7365722e707567782e6f72672f6f737362726f776e69652f65737075746e696b2f646f776e6c6f616473)](https://packagist.org/packages/ossbrownie/esputnik)[![Latest Unstable Version](https://camo.githubusercontent.com/9d784583c5338eac5b6cd057a999b2fef70ccca003b5d7ee171c6989194799cc/68747470733a2f2f706f7365722e707567782e6f72672f6f737362726f776e69652f65737075746e696b2f762f756e737461626c65)](https://packagist.org/packages/ossbrownie/esputnik)[![License](https://camo.githubusercontent.com/af49ea6be5558371bc1f156d69073c306a26a7851603ef4b4ed8dde2b43fff67/68747470733a2f2f706f7365722e707567782e6f72672f6f737362726f776e69652f65737075746e696b2f6c6963656e7365)](https://packagist.org/packages/ossbrownie/esputnik)

Marketing automation system ESputnik.

curl
----

[](#curl)

A basic CURL wrapper for PHP (see  for more information about the libcurl extension for PHP)

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

[](#requirements)

- **PHP** &gt;= 5.4
- **EXT-CURL** = \*

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

[](#installation)

Add a line to your "require" section in your composer configuration:

```
{
    "require": {
        "ossbrownie/esputnik": "0.1.3"
    }
}
```

Usage
-----

[](#usage)

```
$eSputnik = new ESputnik(
    new HTTPClient(
        new CurlClient(),
        new Config([
            'login' => 'tester',
            'password' => 'passwd'
        ])
    )
);

{
    $version = $eSputnik->version();
}

{
    $contact = new Contact();

    $contact
        ->setFirstName('FName')
        ->setLastName('LName')
        ->setContactKey('contact@site.com');

    $channelList = new ChannelList();
    $channelList->add(new EmailChannel([
        'value' => 'tester@site.com'
    ]));

    $fieldList = new FieldList();
    $fieldList
        ->add(new Field([
            'id' => 12345,
            'value' => 'CustomValue1',
        ]))
        ->add(new Field([
            'id' => 12346,
            'value' => 'CustomValue2',
        ]));

    $contact
        ->setFieldList($fieldList);

    $contact
        ->setChannelList($channelList);

    $subscribe = new Subscribe();
    $subscribe
        ->setFormType('test_type')
        ->getGroups()->add(new Group([
            'name' => 'Test group'
        ]));

    $response = $eSputnik->contactSubscribe($contact, $subscribe);
}

{
    $addressbooks = $eSputnik->addressbooks();
}

{
    $groups = $eSputnik->groups();
}

{
    $params = new ParamList();
    $params
        ->add(new Parameter([
            'name' => 'EmailAddress',
            'value' => 'tester@site.com',
        ]));

    $eSputnik->event(new Event([
        'eventTypeKey' => 'test-test',
        'keyValue' => 'test-' . time(),
        'params' => $params
    ]))
}
```

Tests
-----

[](#tests)

To run the test suite, you need install the dependencies via composer, then run PHPUnit.

```
$> composer.phar install
$> ./vendor/bin/phpunit --colors=always --bootstrap ./tests/bootstrap.php ./tests
```

License
-------

[](#license)

HttpClient is licensed under the [MIT License](https://opensource.org/licenses/MIT)

Contact
-------

[](#contact)

Problems, comments, and suggestions all welcome:

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance64

Regular maintenance activity

Popularity12

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 81% 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

Unknown

Total

1

Last Release

216d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5a155b7be23704de5be0dcb5d2b543736a2e9765ea2eb7e6103fb28307bf2b9b?d=identicon)[ch-tm](/maintainers/ch-tm)

---

Top Contributors

[![ossbrownie](https://avatars.githubusercontent.com/u/29150511?v=4)](https://github.com/ossbrownie "ossbrownie (17 commits)")[![ch-tm](https://avatars.githubusercontent.com/u/22640796?v=4)](https://github.com/ch-tm "ch-tm (4 commits)")

---

Tags

esputnikbrownie

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/plasma-platform-esputnik/health.svg)

```
[![Health](https://phpackages.com/badges/plasma-platform-esputnik/health.svg)](https://phpackages.com/packages/plasma-platform-esputnik)
```

###  Alternatives

[lillik/module-seo-pagination

Magento 2 Seo Pagination

1014.2k](/packages/lillik-module-seo-pagination)

PHPackages © 2026

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