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)012.9k—8.3%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 1mo ago

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 83% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity28

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

990d 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

[dnetix/redirection

Library to connect with PlacetoPay Checkout service

17123.3k2](/packages/dnetix-redirection)[tpay-com/tpay-php

Tpay.com library

25260.3k9](/packages/tpay-com-tpay-php)[vipps/module-payment

Vipps MobilePay Payment Module for Magento 2

1195.4k](/packages/vipps-module-payment)[paymentsuite/paymentsuite

PaymentSuite is an easy implementation for lot of Payment Methods for Symfony projects

2615.5k2](/packages/paymentsuite-paymentsuite)

PHPackages © 2026

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