https://github.com/postpayio/postpay-php
Postpay SDK for PHP
https://github.com/postpayio/postpay-php
api client graphql php postpay restful sdk
Last synced: 5 months ago
JSON representation
Postpay SDK for PHP
- Host: GitHub
- URL: https://github.com/postpayio/postpay-php
- Owner: postpayio
- License: mit
- Created: 2019-11-07T01:28:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-20T11:31:06.000Z (almost 4 years ago)
- Last Synced: 2025-10-14T21:13:38.980Z (8 months ago)
- Topics: api, client, graphql, php, postpay, restful, sdk
- Language: PHP
- Homepage: https://php.postpay.io
- Size: 231 KB
- Stars: 0
- Watchers: 6
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.rst
- License: LICENSE
Awesome Lists containing this project
README
# Postpay SDK for PHP
PHP library for [Postpay](https://postpay.io) API.
## Installation
The recommended way to install *postpay-php* is through [Composer](https://getcomposer.org/):
```sh
composer require postpay/postpay-php
```
After installing, you need to require Composer's autoloader:
```php
require 'vendor/autoload.php';
```
## Quickstart
All configs are passed around as a single variable `config`:
```php
$postpay = new \Postpay\Postpay([
'merchant_id' => 'id_ ...',
'secret_key' => 'sk_live_ ...',
]);
```
## Documentation
Fantastic documentation is available at [https://php.postpay.io](https://php.postpay.io).

