Download the PHP package rentpost/forte-payments-php without Composer
On this page you can find all versions of the php package rentpost/forte-payments-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download rentpost/forte-payments-php
More information about rentpost/forte-payments-php
Files in rentpost/forte-payments-php
Package forte-payments-php
Short Description PHP API wrapper client for Forte's API v3 https://restdocs.forte.net/
License MIT
Homepage https://github.com/rentpost/forte-payments-php
Informations about the package forte-payments-php
Forte API v3 PHP Client Library
Forte client library written in PHP for version 3 of the REST API
Forte API Documentation
Installation
Run the following command to include this library within your project
Configuration
You'll first want to create a configuration file that defines your environments and their respective configuration settings. As an example, we're showing a Symfony service container config. However, this is just passing an array in the following format:
It's important to note that Forte's sandbox is quite limited for many resources. Therefore, it's possible to override which environment is used for certain "sub resources" (API resources/endpoints)
Development Environments
An example Symfony service container yaml configuration for a development environment, using a "livetest" environemnt with specific sub resource overrides.
Production Environments
A simple Symfony service container configuration for a production environemtn without any necessary overrides.
Usage
Here is an example credit card 'sale' transaction.
PSR Logger
We first create a dummy logger. Feel free to use any PSR compliant logger. This is used when debugging is enabled in the configuration. Otherwise, all Exceptions will surface and must be caught.
Create Transaction
To use, you'll want to call the Rentpost\ForteApi\Client\Factory::make
method which will give you
a Rentpost\ForteApi\Client\ForteClient
object. The ForteClient
object provides access to all
"sub resources" (Forte API endpoint/resources).
The library makes use of Model
and Attribute
objects which assist with validation and
serialization. Any complex values will make use of an Attribute
. A Model
is an object
representation of a Forte API resource and all required and optional parameters.
Testing
This library makes use of make
recipes to execute all necessary commands. To view a list of
recipes just execute make
.
Requirements
Running tests against Forte's sandbox environment will not return back any meaningful results for many resources. Therefore, an additional "livetest" account is needed for running various tests. This is a real account. You could use a production account in place of this (not advised). But be aware that, in either case, real money will be moved if used for transaction endpoints. Forte can setup a "livetest" account for you if needed with very low transaction limits to prevent mistakes.
The following dev composer packages are required for automated testing.
- "phpunit/phpunit" (version 7.0+)
- "vladahejda/phpunit-assert-exception" for
assertException
and related trait
PHPUnit is used for both unit tests, and integration test (Testing actual API calls to Forte)
Configuration
The integration tests require some settings. This is done via the test/settings.php
file. See test/settings.php.dist
as an example.
Running
Before running tests, you'll need to be sure the project is initialized and vendor packages are
installed via Composer
. To do so, run make init
first. Then you can run tests as follows:
Issues / Bugs / Questions
Please feel free to raise an issue against this repository if you have any questions or problems
Todo
There are still a few "sub resource" classes (read: Forte endpoints/resources)that haven't been completed/aren't supported yet. This is simply because we aren't using these. Feel free to submit these as a pull request, or issue ticket if necessary.
Contributing
New contributors to this project are welcome. If you are interested in contributing please send a courtesy email to [email protected]
Authors and Maintainers
- Jacob Thomason [email protected]
- Sam Anthony [email protected]
License
This library is released under the MIT license.
All versions of forte-payments-php with dependencies
doctrine/common Version ^2.8 || ^3.0
guzzlehttp/guzzle Version ~6.3
monolog/monolog Version ^1.24 || ^2.0
symfony/expression-language Version ~5.0.0
symfony/property-access Version ~5.0.0
symfony/property-info Version ~5.0.0
symfony/serializer Version ~5.0.0
symfony/validator Version ~5.0.0
symfony/var-dumper Version ~5.0.0
symfony/yaml Version ~5.0.0