PHPackages                             proglab/selligent-client-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. [API Development](/categories/api)
4. /
5. proglab/selligent-client-bundle

ActiveSymfony-bundle[API Development](/categories/api)

proglab/selligent-client-bundle
===============================

Selligent Client Bundle

v6.1.0(3y ago)11.3kproprietaryPHPPHP &gt;=8.1

Since Aug 20Pushed 3y ago2 watchersCompare

[ Source](https://github.com/Proglab/SelligentClientBundle)[ Packagist](https://packagist.org/packages/proglab/selligent-client-bundle)[ RSS](/packages/proglab-selligent-client-bundle/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (8)Versions (11)Used By (0)

SelligentClientBundle
=====================

[](#selligentclientbundle)

A Selligent basic client

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

[](#installation)

You must add this to your .env file :

```
###> proglab/selligent-client-bundle ###
APISELLIGENTCLIENT_INDIVIDUAL_URL=xxx
APISELLIGENTCLIENT_BROADCAST_URL=xxx
APISELLIGENTCLIENT_LOGIN=xxx
APISELLIGENTCLIENT_PASSWORD=xxx
###< proglab/selligent-client-bundle ###

```

Open a command console, enter your project directory and execute:

```
composer require proglab/selligent-client-bundle
```

If you're not using symfony/flex, enable the bundle by adding it to the list of registered bundles in the `config/bundles.php` file of your project:

```
// config/bundles.php

return [
    // ...
    Proglab\SelligentClientBundle\SelligentClientBundle::class => ['all' => true],
];
```

Usage
-----

[](#usage)

### Generals

[](#generals)

#### Getting a SelligentClient

[](#getting-a-selligentclient)

You have two choices:

1. Create the client manually, and pass it a logger:

```
use Proglab\SelligentClientBundle\Service\SelligentClient;
use Psr\Log\NullLogger;

$logger = new NullLogger();
$client = new SelligentClient($logger);
```

2. Get the client from Dependency Injection:

```
use Proglab\SelligentClientBundle\Service\SelligentClient;

class Service
{
    public function __construct(private SelligentClient $client)
    {
    }
}
```

#### Connection

[](#connection)

You must connect to Selligent SOAP API.

You need the individual\_url, broadcast\_url, login and password.

```
$client->connect('individual_url', 'broadcast_url', 'login', 'password');
```

### Get a record

[](#get-a-record)

Get a record with a filter :

```
$filters = ['ID' => 18];
$listId = 54;
$client->getOneByFilter($filters, $listId);
```

### Create a row

[](#create-a-row)

Create a record in a list :

```
$data = [
    'MAIL' => 'xx@xxxxx.xxx',
    'NAME' => 'xxxxx xxxx',
    'LANGUAGE' => 'fr'
];
$listId = 54;
$client->createRow($data, $listId);
```

### Update a row

[](#update-a-row)

Update a record in a list :

```
$data = ['FIRSTNAME' => 'Fabrice'];
$listId = 54;
$client->updateRow($data, 54, $listId);
```

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity66

Established project with proven stability

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

Recently: every ~89 days

Total

8

Last Release

1398d ago

Major Versions

v1.0.5 → v5.4.02022-09-05

v5.4.0 → v6.1.02022-09-05

PHP version history (2 changes)v1.0.0PHP &gt;=7.4

v6.1.0PHP &gt;=8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/441b0b3cc2ce121c0d99034dd3b87d1cb73a9d8613d9518968b295c10aae31cf?d=identicon)[Proglab](/maintainers/Proglab)

---

Top Contributors

[![Proglab](https://avatars.githubusercontent.com/u/4598760?v=4)](https://github.com/Proglab "Proglab (8 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/proglab-selligent-client-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/proglab-selligent-client-bundle/health.svg)](https://phpackages.com/packages/proglab-selligent-client-bundle)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.9M388](/packages/easycorp-easyadmin-bundle)[symfony/web-profiler-bundle

Provides a development tool that gives detailed information about the execution of any request

2.3k160.5M1.2k](/packages/symfony-web-profiler-bundle)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k5.9M738](/packages/sylius-sylius)[shopware/storefront

Storefront for Shopware

684.6M236](/packages/shopware-storefront)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.6M574](/packages/shopware-core)[sulu/headless-bundle

Bundle that provides controllers and services for using Sulu as headless content management system

56146.1k2](/packages/sulu-headless-bundle)

PHPackages © 2026

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