PHPackages                             payprocessing/connectum-sdk - 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. [Payment Processing](/categories/payments)
4. /
5. payprocessing/connectum-sdk

ActiveLibrary[Payment Processing](/categories/payments)

payprocessing/connectum-sdk
===========================

Connectum SDK

2.3.1(2y ago)113.2k↓81.7%10PHPPHP &gt;=5.5CI failing

Since Nov 8Pushed 2y ago3 watchersCompare

[ Source](https://github.com/Platron/connectum)[ Packagist](https://packagist.org/packages/payprocessing/connectum-sdk)[ RSS](/packages/payprocessing-connectum-sdk/feed)WikiDiscussions master Synced yesterday

READMEChangelog (10)Dependencies (2)Versions (56)Used By (0)

Platron Connectum SDK
=====================

[](#platron-connectum-sdk)

Install
-------

[](#install)

```
composer require platron/connectum-sdk
```

To use SDK you need to generate pem certificate and private key. You could use this command

```
openssl pkcs12 -in login.p12 -out private.key -nocerts -nodes
openssl pkcs12 -in login.p12 -out certificate.cer -nokeys

```

Start tests
-----------

[](#start-tests)

```
composer install

```

To use tests copy tests/integration/MerchantSettingsSample.php and delete Sample substring. Than use

```
vendor/bin/phpunit tests/integration

```

Samples
-------

[](#samples)

1. Set connection settings in object

```
$connectionSettings = new Platron\Connectum\data_objects\ConnectionSettingsData();
$connectionSettings->login = 'login';
$connectionSettings->password = 'password';
$connectionSettings->certificatePath = 'path_to_cert.pem';
$connectionSettings->certificatePassword = 'certificate_password;
```

1. Auth

```
$client = new Platron\Connectum\clients\PostClient($connectionSettings);

$card = new Platron\Connectum\data_objects\CardData();
$card->holder = 'test test';
$card->cvv = '123';
$card->expiration_month = '06';
$card->expiration_year = '2022';

$location = new Platron\Connectum\data_objects\LocationData();
$location->ip = '8.8.8.8';

$request = new Platron\Connectum\services\order_authorize\OrderAuthorizeRequest(10, 'RUB', '4111111111111111', $card, $location);
$response = new Platron\Connectum\services\order_authorize\OrderAuthorizeResponse($client->sendRequest($request));
```

2. Capture

```
$client = new Platron\Connectum\clients\PutClient($connectionSettings);
$request = new Platron\Connectum\services\order_charge\OrderChargeRequest(111, 10.00);
$response = new Platron\Connectum\services\order_charge\OrderChargeResponse($client->sendRequest($request));
```

3. Order list

```
$client = new Platron\Connectum\clients\GetClient($this->connectionSettings);
$request = new Platron\Connectum\services\order_list\OrderListRequest();

$card = new Platron\Connectum\data_objects\CardData();
$card->type = Platron\Connectum\handbooks\OrderStatus::PREPARED;
$request->setCard($card);

$response = new Platron\Connectum\services\order_list\OrderListResponse($client->sendRequest($request));
```

###  Health Score

37

—

LowBetter than 81% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity72

Established project with proven stability

 Bus Factor1

Top contributor holds 84.2% 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 ~40 days

Recently: every ~250 days

Total

54

Last Release

1036d ago

Major Versions

v1.4.0 → 2.0.02019-05-23

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

v1.3.0PHP &gt;=5.5

### Community

Maintainers

![](https://www.gravatar.com/avatar/caea96e8690a330baf5b14f979ee6c97f1173b9fd6ec2722a0d28ecc98cfa2a6?d=identicon)[cto](/maintainers/cto)

---

Top Contributors

[![lashnag](https://avatars.githubusercontent.com/u/5690099?v=4)](https://github.com/lashnag "lashnag (16 commits)")[![schursin](https://avatars.githubusercontent.com/u/980845?v=4)](https://github.com/schursin "schursin (3 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/payprocessing-connectum-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/payprocessing-connectum-sdk/health.svg)](https://phpackages.com/packages/payprocessing-connectum-sdk)
```

###  Alternatives

[symfony/http-kernel

Provides a structured process for converting a Request into a Response

8.1k869.4M8.8k](/packages/symfony-http-kernel)[symfony/cache

Provides extended PSR-6, PSR-16 (and tags) implementations

4.2k373.5M3.3k](/packages/symfony-cache)[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k15](/packages/tempest-framework)[recurly/recurly-client

The PHP client library for the Recurly API

1736.6M9](/packages/recurly-recurly-client)[ecotone/ecotone

Enterprise architecture layer for Laravel and Symfony — CQRS, Event Sourcing, Durable Workflows (Sagas, Orchestrators), Projections, and Outbox messaging via PHP attributes.

564576.7k52](/packages/ecotone-ecotone)

PHPackages © 2026

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