paylixhq / php-sdk
There is no license information available for the latest version (dev-main) of this package.
Paylix PHP Sdk
dev-main
2025-06-08 22:41 UTC
This package is not auto-updated.
Last update: 2026-04-28 00:50:34 UTC
README
Introduction
Paylix public API for developers to access merchant resources
Requirements
- php ^5.3
- php-curl
Installation
Install the package through composer.
composer require paylixhq/php-sdk
Usage
<?php require_once 'vendor/autoload.php'; use \Paylix\PhpSdk\Paylix; use \Paylix\PhpSdk\PaylixException; // pass <MERCHANT_NAME> only if you need to be authenticated as an additional store $client = new Paylix("<YOUR_API_KEY>", "<MERCHANT_NAME>"); try { $products = $client->get_products(); } catch (PaylixException $e) { echo $e->__toString(); } ?>