https://github.com/finpaytech/atlpay-php-sdk
https://github.com/finpaytech/atlpay-php-sdk
atlpay-php-sdk composer php-sdk
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/finpaytech/atlpay-php-sdk
- Owner: FinPayTech
- Created: 2017-01-15T07:05:28.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-15T08:54:19.000Z (about 9 years ago)
- Last Synced: 2025-07-04T01:06:36.385Z (9 months ago)
- Topics: atlpay-php-sdk, composer, php-sdk
- Language: PHP
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# php-sdk
ATLPay Payment Gateway Integration PHP SDK
## Requirements
PHP 5.3.3 and later.
## Composer
You can install the bindings via [Composer](http://getcomposer.org/). Run the following command:
```bash
composer require atlpay/php-sdk
```
To use the bindings, use Composer's [autoload](https://getcomposer.org/doc/00-intro.md#autoloading):
```php
require_once('vendor/autoload.php');
```
## Dependencies
The bindings require the following extension in order to work properly:
- [`curl`](https://secure.php.net/manual/en/book.curl.php), although you can use your own non-cURL client if you prefer
- [`json`](https://secure.php.net/manual/en/book.json.php)
- [`mbstring`](https://secure.php.net/manual/en/book.mbstring.php) (Multibyte String)
- [`guzzlehttp`](http://docs.guzzlephp.org/en/latest/) (HTTP Client)
- [`respectvalidation`](http://respect.github.io/Validation/) (Validation)
If you use Composer, these dependencies should be handled automatically. If you install manually, you'll want to make sure that these extensions are available.