PHPackages                             boeki/universal-connector - 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. boeki/universal-connector

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

boeki/universal-connector
=========================

v1.0.5(4y ago)04221PHPPHP &gt;=5.3.0

Since Apr 2Pushed 4y ago1 watchersCompare

[ Source](https://github.com/JamesStandbridge/UniversalConnector)[ Packagist](https://packagist.org/packages/boeki/universal-connector)[ RSS](/packages/boeki-universal-connector/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (10)DependenciesVersions (18)Used By (1)

Boeki UniversalConnector
========================

[](#boeki-universalconnector)

UniversalConnector is a native PHP library allowing the instantiation of a multitude of common APIs on the market. The library is updated regularly with the contribution of new instances and new methods within the API.

Versions
--------

[](#versions)

VersionsDateFeaturesv1.0.006/04/2021Magento2 APIv2.0.027/08/2021SendinBlue APIRequirements
------------

[](#requirements)

- `php >=5.3.0`

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

[](#installation)

```
# composer
composer require boeki/universal-connector
```

Usage
-----

[](#usage)

### Instantiating the desired API class

[](#instantiating-the-desired-api-class)

```
# Magento
$api = APIProvider::Magento2Instance();

# SendinBlue
$api = APIProvider::SendinBlueInstance();
```

### Initialization of the connection pipe

[](#initialization-of-the-connection-pipe)

```
# Magento
$api->initialize("username", "password", "http://example.com");

# SendinBlue
$api->initialize("xkeysib-5bbxxxxxxxxxxxxxxxx");
```

Optional: you can provide a default website ID for the next request for Magento2

```
# Magento
$api->setWebsite($website_id);
```

### Request examples

[](#request-examples)

```
# SendinBlue
use UniversalConnector\API\APIProvider;
use UniversalConnector\API\SendinBlue\Builder\SendinBlueTools;

$api = APIProvider::SendinBleuInstance();
$api->initialize("xkeysib-5bbxxxxxxxxxxxxxxxx");

$fileBody = SendinBlueTools::CONTACTS_FILE_BODY(
	["EMAIL","NOM","PRENOM","SMS"],
	[
		["james@example.com","Standbridge","James","972542116060"],
		["Vanessa@example.com","Lucas","Vanessa","972542116061"],
		["Arthur@example.com","Arnold","Arthur","972542116063"]
	]
);

$response = $api->POST_contacts(
	$fileBody,
	null,
	["listName" => "Universal-connector_list_test", "folderId" => 9],
	true,
	false,
	null,
	false,
	false
);
```

Magento2 methods
----------------

[](#magento2-methods)

HTTPMethodArgumentsDescriptionPOSTPOST\_tierPricesarray tierPricesAdd or update product prices. If any items will have invalid price, price type, website id, sku, customer group or quantity, they will be marked as failed and excluded from update list and \\Magento\\Catalog\\Api\\Data\\PriceUpdateResultInterface\[\] with problem description will be returned. If there were no failed items during update empty array will be returned. If error occurred during the update exception will be thrown.SendinBlue methods
------------------

[](#sendinblue-methods)

HTTPMethodArgumentsDescriptionGETGET\_all\_contactsint limit = 50,
 int offset = 0,
 string sort = "desc",
 \\DateTime modifiedSince = nullGet all contacts with pagination filtersPOSTPOST\_contactstring email,
 array attributes,
 array listIds,
 bool updateEnabled,
 bool emailBlacklisted,
 bool smsBlacklistedPost one contactPOSTPOST\_contactsstring fileBody,
 array listIds = null,
 array newList = null,
 bool updateExistingContacts = true,
 bool emptyContactsAttributes = false,
 string notifyUrl = null,
 bool emailBlacklist = false,
 bool smsBlacklist = falseImport multiple contacts from an FileBody CSV stylePUTUPDATE\_contactstring identifier,
array attributes = null,
 bool emailBlacklisted = null,
 bool smsBlacklisted = nullUpdate attribute and RGPD of one contact. Identifier can be the email or the contact's system IDDELETEDELETE\_contactstring identifierDelete one contact from the SendinBlue database. Identifier can be the email or the contact's system IDGETGET\_accountN\\AGet current API Key account informations

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

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

Recently: every ~57 days

Total

17

Last Release

1496d ago

Major Versions

0.0.9.6 → V1.0.02021-08-27

### Community

Maintainers

![](https://www.gravatar.com/avatar/456c778c51395f6ed07bc4a3677696089ab856642a4737e44a8bc113becbac5a?d=identicon)[JamesStandbridge](/maintainers/JamesStandbridge)

---

Top Contributors

[![JamesStandbridge](https://avatars.githubusercontent.com/u/67155672?v=4)](https://github.com/JamesStandbridge "JamesStandbridge (44 commits)")

### Embed Badge

![Health badge](/badges/boeki-universal-connector/health.svg)

```
[![Health](https://phpackages.com/badges/boeki-universal-connector/health.svg)](https://phpackages.com/packages/boeki-universal-connector)
```

###  Alternatives

[kornrunner/secp256k1

Pure PHP secp256k1

37566.4k109](/packages/kornrunner-secp256k1)[liborm85/composer-vendor-cleaner

Composer Vendor Cleaner removes unnecessary development files and directories from vendor directory.

35342.7k1](/packages/liborm85-composer-vendor-cleaner)[makinacorpus/php-bloom

Bloom filter implementation

178.9k](/packages/makinacorpus-php-bloom)

PHPackages © 2026

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