PHPackages                             aba\_payway\_gateway/php\_payway\_partner - 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. aba\_payway\_gateway/php\_payway\_partner

ActiveLibrary[Payment Processing](/categories/payments)

aba\_payway\_gateway/php\_payway\_partner
=========================================

A self registration for aba payway

1.0.1(1y ago)071↓50%proprietaryPHP

Since Nov 7Pushed 1y ago1 watchersCompare

[ Source](https://github.com/kechankrisna/aba_payway_partner)[ Packagist](https://packagist.org/packages/aba_payway_gateway/php_payway_partner)[ Docs](https://github.com/kechankrisna/aba_payway_partner)[ RSS](/packages/aba-payway-gateway-php-payway-partner/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (6)Versions (5)Used By (0)

Usage example:

PaywayPartnerService is required
--------------------------------

[](#paywaypartnerservice-is-required)

```
$partner = new PaywayPartner(
        partnerName: $_ENV['ABA_PARTNER_NAME'] ?? '',
        partnerID: $_ENV['ABA_PARTNER_ID'] ?? '',
        partnerKey: $_ENV['ABA_PARTNER_KEY'] ?? '',
        partnerPrivateKey: utf8_decode(base64_decode($_ENV['ABA_PARTNER_PRIVATE_KEY'] ?? "")),
        partnerPublicKey: utf8_decode(base64_decode($_ENV['ABA_PARTNER_PUBLIC_KEY'] ?? "")),
        baseApiUrl: $_ENV['ABA_PARTNER_API_URL'] ?? '',
    );
    $service = new PaywayPartnerService($partner);
```

by register a new merchant, the merchant field is required
----------------------------------------------------------

[](#by-register-a-new-merchant-the-merchant-field-is-required)

```
$merchant = new PaywayPartnerRegisterMerchant(
        pushback_url: 'https://www.mylekha.org/',
        redirect_url: 'https://www.mylekha.org/',
        type: 0,
        register_ref: "Merchant003",
    );
    $response = $service->registerMerchant($merchant);
```

by checking the new registered merchant, the register\_ref is required
----------------------------------------------------------------------

[](#by-checking-the-new-registered-merchant-the-register_ref-is-required)

```
$merchant = new PaywayPartnerCheckMerchant(
        register_ref: "Merchant003",
    );
    $service = new PaywayPartnerService($partner);

    $response = $service->checkMerchant(merchant: $merchant);
```

### to get hash string please use PaywayPartnerClientService

[](#to-get-hash-string-please-use-paywaypartnerclientservice)

```
$service = (new PaywayPartnerClientService($partner));
$str = $service->getStr($requestTime, $requestData);
$hash = $service->getHash($str);
```

### to encrypt and decrypt using public key and private please use: PaywayPartnerClientFormRequestService

[](#to-encrypt-and-decrypt-using-public-key-and-private-please-use-paywaypartnerclientformrequestservice)

```
$service = PaywayPartnerClientFormRequestService($partner);
$encrypted = $service.opensslEncrypt(json_encode($data), $partner.partnerPublicKey);
$decrypted = $service.opensslEncrypt(json_encode($data), $partner.partnerPrivateKey);
```

NOTE:
=====

[](#note)

`please look flutte example folder for more information`

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance42

Moderate activity, may be stable

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity45

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

Total

4

Last Release

468d ago

### Community

Maintainers

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

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/aba-payway-gateway-php-payway-partner/health.svg)

```
[![Health](https://phpackages.com/badges/aba-payway-gateway-php-payway-partner/health.svg)](https://phpackages.com/packages/aba-payway-gateway-php-payway-partner)
```

###  Alternatives

[bitpay/sdk

Complete version of the PHP library for the new cryptographically secure BitPay API

42337.5k4](/packages/bitpay-sdk)[imdhemy/google-play-billing

Google Play Billing

491.3M5](/packages/imdhemy-google-play-billing)[buckaroo/sdk

Buckaroo payment SDK

12189.1k9](/packages/buckaroo-sdk)[contica/facturador-electronico-cr

Un facturador de código libre para integrar facturación electrónica en Costa Rica a un proyecto PHP

2128.8k](/packages/contica-facturador-electronico-cr)

PHPackages © 2026

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