Download the PHP package propa/psigate without Composer

On this page you can find all versions of the php package propa/psigate. 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 psigate

PSIGate PHP API

PHP implementation of PSIGate XML Messenger and Account Manager API.

WARNING (2017-10-23)

Due to change in URL structure of API gateway, an incompatibility issue may arise when update to the most recent dev-master version from prior to 2017-10-23 one. Version history is introduced to address the issue (my mistake not to introduce it right away). If you want to use old version, i.e. not to introduce changes in your current code, change dev-master to 0.9 in your composer file. To avoid potential future compatibility, change dev-master to the most relevant current release.

General Information

The library is a wrapper around PSIGate XML API making input and result array structures reflect structure of XML documents PSIGate gateway expects. Refer to original PSIGate documentation to understand what parameters to set and what result values to expect.

Installation

The recommended way to install the library is through Composer.

Handling Exceptions

If an error occurs during request processing, an exception is thrown. Exception code is initialized with corresponding PSIGate API error code (RPA-0002, RIV-0019 etc.) and exception message with corresponding error message, refer to PSIGate API documentation for the full list of error codes and associated messages.

There are several PHP API specific errors related to unexpected response format, cURL and other situations, their exception codes are prefixed with PAPI and CURL (e.g. PAPI-0001, PAPI-0002, CURL-0001, CURL-0006 etc).

Be aware that if exception is not thrown, it doesn't mean the operation was successful in general terms. E.g. AMMessenger::chargeImmediate() returns Invoice structure in result even though tranasaction is declined by processing gateway and credit card is not debited. There is Messenger::analyseTransactionResult() method which can be used for checking if data structure contains error information.

XML Messenger (XMLMessenger)

XML Messenger allows to process real-time credit card transactions.

Basic usage

Account Manager (AMMessenger)

Account Manager Service allows to register customer payment accounts, store customer payment information for future recurring or real-time authorization, track customers’ recurring or real-time transaction activity in the form of invoices.

Basic usage

Return Values

Return values of AMMessenger methods can be split into such groups:

  1. Summary actions (accountSummary, invoiceSummary etc.). These can return empty result (NULL), single record (one dimentional array) or multiple records (array of arrays). Since it is unknown upfront how many results specified filter rules will yeild, calling script must be flexible in handling possible return structures.
  2. Details actions (accountDetails, chargeDetails etc.). These return either empty result (NULL), if record with specified ID is not found, or single record.
  3. Actions which create a record in PSIGate database (accountRegister, accountCardAdd, chargeRegister etc.) These return a record created during the process, usually used by calling script to aquire fields generated by PSIGate (record ID, transaction status etc.)
  4. Actions which update or delete already existing record (accountUpdate, templateDisable, chargeDelete, emailReportDelete etc.). These return PSIGate success code for corresponding operation, since success code for each action type doesn't change, this return value is not much useful to calling script and usually can be ignored.

Known Issues (2013-11-21)

There are inconsitencies between Account Manager API documentation v1.1.08 and actual API behavior. Since PHP API is a simple intermediary interface, the source of the issues is PSIGate server itself.

  1. Not all return codes and messages are documented (e.g. "EMR-0099 Immediate email report has been sent successfully.").
  2. Some methods return different success code from what could be assumed from documentation, e.g. account card update action (AMA12) returns "RPA-0022 Update Account action completed successfully." though there is more specific "RPA-0025 Update Card action completed successfully." listed.
  3. Summary actions do not support all filters specified in documentation.
  4. Summary actions do not have required filters, though documentation may list some as such.
  5. Register actions return generated ID if not specified explicitly except for "CTL01 Register template" which returns empty value for TemplateID though subsequent requests for details show that TemplateID was generated.
  6. In charge template related actions, except for template item add (CTL11), trigger date must be specified with Trigger, not with RBTrigger as suggested by documentation.
  7. Delete, enable, disable template, and delete, enable and disable template item actions (CTL04, CTL08, CTL09, and CTL14, CTL18, CTL19 respectively) expect template id to be supplied with RBCID condition, not with TemplateID as suggested by documentation.
  8. Item Add actions are not satisfied with holder id only (RBCID or TemplateID) since PSIGate runs validation for condition equivalent elements and thus required fields (as defined in holder register action) must be supplied even though holder id would be enough.
  9. Register charge action (RBC01) needs required fields set regardless of the fact that charge is created based on template with the same ones defined.
  10. Immediate charge action (RBC99) in Invoice response element returns RBCID value twice.

All versions of psigate with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.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 propa/psigate contains the following files

Loading the files please wait ....