https://github.com/processout/processout-php
ProcessOut API bindings for PHP
https://github.com/processout/processout-php
Last synced: 6 months ago
JSON representation
ProcessOut API bindings for PHP
- Host: GitHub
- URL: https://github.com/processout/processout-php
- Owner: processout
- License: mit
- Created: 2015-01-19T02:00:37.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2025-09-02T15:21:59.000Z (10 months ago)
- Last Synced: 2025-11-27T16:25:05.252Z (7 months ago)
- Language: PHP
- Homepage: https://docs.processout.com
- Size: 534 KB
- Stars: 8
- Watchers: 7
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
ProcessOut PHP
==============
[](https://packagist.org/packages/processout/processout-php)
[](https://packagist.org/packages/processout/processout-php)
This package provides bindings to the ProcessOut API.
Dependencies
------------
* PHP 5.4 or above
* cURL PHP extension
Installation
------------
The package's installation is done using composer. Simply add these lines to your composer.json
```json
{
"require": {
"processout/processout-php": "^7.4.0"
}
}
```
And run the composer update command to install/update the package.
```sh
composer update
```
Installing without composer
------------
The ProcessOut PHP library may also be used without composer by directly
cloning the directory into your project
```sh
git clone https://github.com/processout/processout-php
```
or downloading the latest release at
[github.com/ProcessOut/processout-php/releases](https://github.com/ProcessOut/processout-php/releases)
and including the ProcessOut init file
```php
include_once("processout-php/init.php");
```