postpay / postpay-php
Postpay SDK for PHP
0.1.1
2021-06-14 10:24 UTC
Requires
- php: >=5.6
Requires (Dev)
- guzzlehttp/guzzle: ~6.0
- phpunit/phpunit: ^4.8.35 || ^5.7 || ^6.4 || ^7.0
- squizlabs/php_codesniffer: *
Suggests
- guzzlehttp/guzzle: Required for using Guzzle HTTP client
This package is auto-updated.
Last update: 2025-03-20 16:57:47 UTC
README
Postpay SDK for PHP
PHP library for Postpay API.
Installation
The recommended way to install postpay-php is through Composer:
composer require postpay/postpay-php
After installing, you need to require Composer's autoloader:
require 'vendor/autoload.php';
Quickstart
All configs are passed around as a single variable config
:
$postpay = new \Postpay\Postpay([ 'merchant_id' => 'id_ ...', 'secret_key' => 'sk_live_ ...', ]);
Documentation
Fantastic documentation is available at https://php.postpay.io.