starfolksoftware / paystack-php
A PHP library to conveniently access the Paystack API from applications written in the PHP language.
Requires
- php: ^8.0
- laminas/laminas-diactoros: ^2.25.1
- php-http/client-common: ^2.3
- php-http/discovery: ^1.14.1
- psr/http-client: ^1.0.1
- psr/http-client-implementation: ^1.0
- psr/http-factory: ^1.0.1
- symfony/options-resolver: ^6.2
Requires (Dev)
- php-http/curl-client: ^2.2
- php-http/mock-client: ^1.5
- phpunit/phpunit: ^9.5
- symfony/var-dumper: ^6.2
README
The Paystack PHP library provides convenient access to the Paystack API from applications written in the PHP language. It includes a pre-defined set of classes for API resources that initialize themselves dynamically from API responses which makes it compatible with a wide range of versions of the Paystack API.
Requirements
PHP 8.0 and later.
Composer
You can install the bindings via Composer. Run the following command:
composer require starfolksoftware/paystack-php
To use the bindings, use Composer's autoload:
require_once('vendor/autoload.php');
Dependencies
Any package that implements psr/http-client-implementation
Getting Started
Simple usage looks like:
<?php require_once "vendor/autoload.php"; use StarfolkSoftware\Paystack\Client as PaystackClient; $paystack = new PaystackClient([ 'secretKey' => '*******', ]); $response = $paystack ->transactions ->all([]); var_dump($response['data'][0]); \\ dumps array(21) { ... } ...
Available endpoints
- Customer
- Invoice
- Plan
- Subscription
- Transaction
Documentation
See the PHP API docs.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Road Map
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.