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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

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

https://restdocs.forte.net/

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 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

License

This library is released under the MIT license.


All versions of forte-payments-php with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
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
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package rentpost/forte-payments-php contains the following files

Loading the files please wait ....