PHPackages                             apimatic-payrix-sdk/payrix-api-sdk-php - 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. apimatic-payrix-sdk/payrix-api-sdk-php

ActiveLibrary[API Development](/categories/api)

apimatic-payrix-sdk/payrix-api-sdk-php
======================================

SDKs for Payrix API

1.0.3(6mo ago)00MITPHPPHP ^7.2 || ^8.0

Since Nov 6Pushed 6mo agoCompare

[ Source](https://github.com/sdks-io/payrix-api-php-sdk)[ Packagist](https://packagist.org/packages/apimatic-payrix-sdk/payrix-api-sdk-php)[ Docs](https://www.worldpay.com/en)[ RSS](/packages/apimatic-payrix-sdk-payrix-api-sdk-php/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (5)Versions (5)Used By (0)

Getting Started with Payrix
===========================

[](#getting-started-with-payrix)

Install the Package
-------------------

[](#install-the-package)

Run the following command to install the package and automatically add the dependency to your composer.json file:

```
composer require "apimatic-payrix-sdk/payrix-api-sdk-php:1.0.3"
```

Or add it to the composer.json file manually as given below:

```
"require": {
    "apimatic-payrix-sdk/payrix-api-sdk-php": "1.0.3"
}
```

You can also view the package at:

Initialize the API Client
-------------------------

[](#initialize-the-api-client)

***Note:*** Documentation for the client can be found [here.](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/client.md)

The following parameters are configurable for the API Client:

ParameterTypeDescriptionenvironment`Environment`The API environment.
 **Default: `Environment.SANDBOX`**timeout`int`Timeout for API calls in seconds.
*Default*: `0`enableRetries`bool`Whether to enable retries and backoff feature.
*Default*: `false`numberOfRetries`int`The number of retries to make.
*Default*: `0`retryInterval`float`The retry time interval between the endpoint calls.
*Default*: `1`backOffFactor`float`Exponential backoff factor to increase interval between retries.
*Default*: `2`maximumRetryWaitTime`int`The maximum wait time in seconds for overall retrying requests.
*Default*: `0`retryOnTimeout`bool`Whether to retry on request timeout.
*Default*: `true`httpStatusCodesToRetry`array`Http status codes to retry against.
*Default*: `408, 413, 429, 500, 502, 503, 504, 521, 522, 524`httpMethodsToRetry`array`Http methods to retry against.
*Default*: `'GET', 'PUT'`proxyConfiguration[`ProxyConfigurationBuilder`](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/proxy-configuration-builder.md)Represents the proxy configurations for API callsapiKeyCredentials[`ApiKeyCredentials`](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/auth/custom-header-signature.md)The Credentials Setter for Custom Header SignaturesessionKeyCredentials[`SessionKeyCredentials`](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/auth/custom-header-signature-1.md)The Credentials Setter for Custom Header SignaturetxnSessionKeyCredentials[`TxnSessionKeyCredentials`](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/auth/custom-header-signature-2.md)The Credentials Setter for Custom Header SignatureusernameCredentials[`UsernameCredentials`](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/auth/custom-header-signature-3.md)The Credentials Setter for Custom Header SignaturepasswordCredentials[`PasswordCredentials`](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/auth/custom-header-signature-4.md)The Credentials Setter for Custom Header SignatureThe API client can be initialized as follows:

```
use PayrixLib\Environment;
use PayrixLib\Authentication\ApiKeyCredentialsBuilder;
use PayrixLib\Authentication\SessionKeyCredentialsBuilder;
use PayrixLib\Authentication\TxnSessionKeyCredentialsBuilder;
use PayrixLib\Authentication\UsernameCredentialsBuilder;
use PayrixLib\Authentication\PasswordCredentialsBuilder;
use PayrixLib\PayrixClientBuilder;

$client = PayrixClientBuilder::init()
    ->apiKeyCredentials(
        ApiKeyCredentialsBuilder::init(
            'APIKEY'
        )
    )
    ->sessionKeyCredentials(
        SessionKeyCredentialsBuilder::init(
            'SESSIONKEY'
        )
    )
    ->txnSessionKeyCredentials(
        TxnSessionKeyCredentialsBuilder::init(
            'TXNSESSIONKEY'
        )
    )
    ->usernameCredentials(
        UsernameCredentialsBuilder::init(
            'USERNAME'
        )
    )
    ->passwordCredentials(
        PasswordCredentialsBuilder::init(
            'PASSWORD'
        )
    )
    ->environment(Environment::SANDBOX)
    ->build();
```

Environments
------------

[](#environments)

The SDK can be configured to use a different environment for making API calls. Available environments are:

### Fields

[](#fields)

NameDescriptionsandbox**Default**canada sandbox-Authorization
-------------

[](#authorization)

This API uses the following authentication schemes.

- [`apiKey (Custom Header Signature)`](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/auth/custom-header-signature.md)
- [`sessionKey (Custom Header Signature)`](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/auth/custom-header-signature-1.md)
- [`txnSessionKey (Custom Header Signature)`](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/auth/custom-header-signature-2.md)
- [`username (Custom Header Signature)`](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/auth/custom-header-signature-3.md)
- [`password (Custom Header Signature)`](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/auth/custom-header-signature-4.md)

List of APIs
------------

[](#list-of-apis)

- [API Keys](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/api-keys.md)
- [Apple Domains](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/apple-domains.md)
- [Apple Domains Mass Enablement](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/apple-domains-mass-enablement.md)
- [Accounts Verifications](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/accounts-verifications.md)
- [Aggregation Result Groups](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/aggregation-result-groups.md)
- [Aggregation Results](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/aggregation-results.md)
- [Alert Actions](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/alert-actions.md)
- [Alert Triggers](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/alert-triggers.md)
- [Authentication Tokens](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/authentication-tokens.md)
- [Batches Settlements](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/batches-settlements.md)
- [Billing Modifiers](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/billing-modifiers.md)
- [Billing Events](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/billing-events.md)
- [Change Requests](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/change-requests.md)
- [Chargeback Documents](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/chargeback-documents.md)
- [Chargeback Message Results](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/chargeback-message-results.md)
- [Chargeback Messages](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/chargeback-messages.md)
- [Chargeback Statuses](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/chargeback-statuses.md)
- [Confirmation Codes](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/confirmation-codes.md)
- [Decision Actions](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/decision-actions.md)
- [Decision Rules](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/decision-rules.md)
- [Disbursement Entries](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/disbursement-entries.md)
- [Disbursement Reference](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/disbursement-reference.md)
- [Disbursement Results](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/disbursement-results.md)
- [Embedded Finance](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/embedded-finance.md)
- [Entity Debts](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/entity-debts.md)
- [Entity Reserves](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/entity-reserves.md)
- [Entity Returns](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/entity-returns.md)
- [Entity Terms](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/entity-terms.md)
- [Entry Origin](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/entry-origin.md)
- [Fee Modifiers](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/fee-modifiers.md)
- [Fee Rules](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/fee-rules.md)
- [Fraud Sight Enablements](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/fraud-sight-enablements.md)
- [Host Themes](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/host-themes.md)
- [Fund Origins](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/fund-origins.md)
- [IP Address Lists](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/ip-address-lists.md)
- [Invoice Items](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/invoice-items.md)
- [Invoice Parameters](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/invoice-parameters.md)
- [Invoice Line Items](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/invoice-line-items.md)
- [Invoice Results](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/invoice-results.md)
- [Logins Helpers](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/logins-helpers.md)
- [Merchant Results](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/merchant-results.md)
- [Merchant Platform Statuses](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/merchant-platform-statuses.md)
- [Message Threads](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/message-threads.md)
- [Note Documents](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/note-documents.md)
- [Orgs VAS Efe Products](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/orgs-vas-efe-products.md)
- [Orgs VAS Omni Tokens](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/orgs-vas-omni-tokens.md)
- [Orgs VAS Revenue Boosts](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/orgs-vas-revenue-boosts.md)
- [Orgs VAS Safer Payments](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/orgs-vas-safer-payments.md)
- [Orgs VA Stax Form Enablements](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/orgs-va-stax-form-enablements.md)
- [Org Entities](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/org-entities.md)
- [Org Flow Actions](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/org-flow-actions.md)
- [Org Flows](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/org-flows.md)
- [Org Flow Rules](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/org-flow-rules.md)
- [Payment Update Groups](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/payment-update-groups.md)
- [Payment Updates](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/payment-updates.md)
- [Payout Flows](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/payout-flows.md)
- [Pending Entry](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/pending-entry.md)
- [Profit Share Results](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/profit-share-results.md)
- [Profit Share Rules](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/profit-share-rules.md)
- [Profit Shares](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/profit-shares.md)
- [Reserve Entry](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/reserve-entry.md)
- [Revenue Boosts](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/revenue-boosts.md)
- [Rev Share Schedules](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/rev-share-schedules.md)
- [Rev Share Statements](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/rev-share-statements.md)
- [Safer Payments](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/safer-payments.md)
- [Statement Entry](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/statement-entry.md)
- [Subscription Tokens](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/subscription-tokens.md)
- [Tax Form Requests](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/tax-form-requests.md)
- [Team Logins](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/team-logins.md)
- [Terminal Transaction Reference](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/terminal-transaction-reference.md)
- [Terminal Transactions Datas](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/terminal-transactions-datas.md)
- [Terminal Transactions](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/terminal-transactions.md)
- [Terminal Transaction Results](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/terminal-transaction-results.md)
- [Terminal Transactions Metadatas](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/terminal-transactions-metadatas.md)
- [Token Results](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/token-results.md)
- [Transaction Datas](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/transaction-datas.md)
- [Transaction Metadatas](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/transaction-metadatas.md)
- [Transaction Holds](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/transaction-holds.md)
- [Transaction Items](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/transaction-items.md)
- [Transactions Results](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/transactions-results.md)
- [Fee Refunds](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/fee-refunds.md)
- [Transactions Txns](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/transactions-txns.md)
- [Tax Form Enablements](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/tax-form-enablements.md)
- [Txn Sessions](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/txn-sessions.md)
- [VAS Efe Offers](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/vas-efe-offers.md)
- [VAS Efe Offer Updates](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/vas-efe-offer-updates.md)
- [Orgs VA Sfraud Sight Enablements](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/orgs-va-sfraud-sight-enablements.md)
- [Fraud Sight Results](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/fraud-sight-results.md)
- [Accounts](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/accounts.md)
- [Adjustments](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/adjustments.md)
- [Aggregations](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/aggregations.md)
- [Alerts](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/alerts.md)
- [Assessments](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/assessments.md)
- [Billing](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/billing.md)
- [Bins](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/bins.md)
- [Chargebacks](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/chargebacks.md)
- [Contacts](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/contacts.md)
- [Credentials](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/credentials.md)
- [Customers](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/customers.md)
- [Decisions](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/decisions.md)
- [Disbursements](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/disbursements.md)
- [Divisions](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/divisions.md)
- [Entities](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/entities.md)
- [Entity Refs](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/entity-refs.md)
- [Entity Data](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/entity-data.md)
- [Entities Custom Fields](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/entities-custom-fields.md)
- [Entries](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/entries.md)
- [Fees](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/fees.md)
- [Funds](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/funds.md)
- [Invoices](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/invoices.md)
- [Logins](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/logins.md)
- [Mappings](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/mappings.md)
- [Members](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/members.md)
- [Merchants](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/merchants.md)
- [Messages](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/messages.md)
- [Notes](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/notes.md)
- [Omni Tokens](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/omni-tokens.md)
- [Orgs](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/orgs.md)
- [Payouts](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/payouts.md)
- [Plans](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/plans.md)
- [Reserves](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/reserves.md)
- [Secrets](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/secrets.md)
- [Sessions](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/sessions.md)
- [Statements](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/statements.md)
- [Subscriptions](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/subscriptions.md)
- [Teams](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/teams.md)
- [Terminals](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/terminals.md)
- [Tokens](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/tokens.md)
- [Vendors](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/controllers/vendors.md)

SDK Infrastructure
------------------

[](#sdk-infrastructure)

### Configuration

[](#configuration)

- [ProxyConfigurationBuilder](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/proxy-configuration-builder.md)

### HTTP

[](#http)

- [HttpRequest](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/http-request.md)
- [HttpResponse](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/http-response.md)

### Utilities

[](#utilities)

- [FileWrapper](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/file-wrapper.md)
- [ApiException](https://www.github.com/sdks-io/payrix-api-php-sdk/tree/1.0.3/doc/api-exception.md)

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance67

Regular maintenance activity

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity43

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

Total

4

Last Release

193d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8c64524a7cd44831921bbc164062fb9f417b5a3e0419b0d130ce05243d68a166?d=identicon)[moizgillani](/maintainers/moizgillani)

---

Top Contributors

[![developer-sdksio](https://avatars.githubusercontent.com/u/135820708?v=4)](https://github.com/developer-sdksio "developer-sdksio (4 commits)")

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/apimatic-payrix-sdk-payrix-api-sdk-php/health.svg)

```
[![Health](https://phpackages.com/badges/apimatic-payrix-sdk-payrix-api-sdk-php/health.svg)](https://phpackages.com/packages/apimatic-payrix-sdk-payrix-api-sdk-php)
```

###  Alternatives

[square/square

Use Square APIs to manage and run business including payment, customer, product, inventory, and employee management.

793.4M21](/packages/square-square)[paypal/paypal-server-sdk

PayPal's SDK for interacting with the REST APIs

53456.5k3](/packages/paypal-paypal-server-sdk)

PHPackages © 2026

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