PHPackages                             bigfoot/ecircle-bundle - 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. bigfoot/ecircle-bundle

ActiveSymfony-bundle

bigfoot/ecircle-bundle
======================

Bigfoot ecircle bundle

v2.2.1(11y ago)14.6k1MITPHP

Since Jan 21Pushed 11y ago13 watchersCompare

[ Source](https://github.com/c2is/BigfootEcircleBundle)[ Packagist](https://packagist.org/packages/bigfoot/ecircle-bundle)[ RSS](/packages/bigfoot-ecircle-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (6)Dependencies (1)Versions (8)Used By (0)

EcircleBundle
=============

[](#ecirclebundle)

EcircleBundle is part of the framework BigFoot created by C2IS.

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

[](#installation)

Add 'bigfoot/ecircle-bundle' into your composer.json file in the 'require' section:

```
// composer.json
"require": {
    ...
    ...
    "bigfoot/ecircle-bundle": "dev-master",
}
```

Update your project:

```
php composer.phar update
```

Enter your credentials in the config file:

```
# app/config.yml
...
...
parameters:
    bigfoot_ecircle:
        client:
            wsdl_url: 'http://webservices.ecircle-ag.com/soap/ecm.wsdl'
            request:
                account_1:
                    realm: 'http://your-ecircle-url.com'
                    user: 'User'
                    passwd: 'Password'
```

Create a class file into the directory Options with the name of the E-circle method followed by 'Options':

```
// src/Bigfoot/Bundle/EcircleBundle/Options/SubscribeMemberByEmailOptions.php

namespace Bigfoot\Bundle\EcircleBundle\Options;

class subscribeMemberByEmailOptions
{
    public $email;
    public $groupId;
    public $session;
    public $sendMessage = false;

}
```

The parameters must be the same as the Ecircle method.

Create a new method in the service 'bigfoot\_ecircle.client':

```
// src/Bigfoot/Bundle/EcircleBundle/Services/BigfootEcircleClient.php
public function subscribeMemberByEmail($email,$groupId)
{

    if (!$this->sessionId) {
        throw new Exception('Client no connected');
    }

    $subscribeMemberByEmailOptions = $this->options('SubscribeMemberByEmail');

    $subscribeMemberByEmailOptions->email   = $email;
    $subscribeMemberByEmailOptions->session = $this->sessionId;
    $subscribeMemberByEmailOptions->groupId = $groupId;

    $result = $this->client->subscribeMemberByEmail($subscribeMemberByEmailOptions);

    return $result;
}
```

Usage
-----

[](#usage)

Into an action method:

```
// Controller/DefaultController.php
$client = $this->get('bigfoot_ecircle.client')->connect('account_1');
$retour = $client->subscribeMemberByEmail('example@email.com','99');
$client->disconnect();
```

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 64.3% 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 ~60 days

Recently: every ~39 days

Total

6

Last Release

4187d ago

Major Versions

1.0.0 → v2.1.12014-06-16

### Community

Maintainers

![](https://www.gravatar.com/avatar/9cf973b70f53fe114063efd8ca9e8c9dd45606ad49b5a9dba27fdecb0d0ada64?d=identicon)[gmanen](/maintainers/gmanen)

---

Top Contributors

[![gmanen](https://avatars.githubusercontent.com/u/1336033?v=4)](https://github.com/gmanen "gmanen (9 commits)")[![ZeMarine](https://avatars.githubusercontent.com/u/158932?v=4)](https://github.com/ZeMarine "ZeMarine (3 commits)")[![korby](https://avatars.githubusercontent.com/u/1763887?v=4)](https://github.com/korby "korby (2 commits)")

### Embed Badge

![Health badge](/badges/bigfoot-ecircle-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/bigfoot-ecircle-bundle/health.svg)](https://phpackages.com/packages/bigfoot-ecircle-bundle)
```

PHPackages © 2026

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