Skip to content

EVO-Snap/PHP-HostedPayments-lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PHP-HostedPayments-lib

PHP-HostedPayments-lib is a small library that will help PHP developers to process their payments through EVO Snap*.

Please note, verison 1.1 is a significant rewrite of the library. Do not upgrade directly from 1.0.1 to 1.1 without reviewing the changelog. Version 1.1 is designed with PSR-4 and Composer in mind, and should play nicely with modern PHP frameworks.

You can get more info about Hosted Payments at the Hosted Payments website.

Using the library with Composer:

Below is an "composer.json" example file that will download the library:

{
    "name": "evo/example",
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/EVO-Snap/PHP-HostedPayments-lib"
        }
    ],
    "require": {
        "evo-snap/hosted-payments": "1.1"
    }
}

Use in production

Hosted Payments library uses PHP cURL to communicate with our servers. It is prepared to avoid SSL verification in our UAT to allow developers a quick setup or their development environment. While using Hosted Payments with our production servers you could get some errors while communicating with them caused by a misconfigured cURL. You will want to verify that you have an updated CA bundle file. You can download the latest version from the cURL official site at https://curl.haxx.se/docs/caextract.html.

Once you got a valid CA bundle, you will want to configure your cURL library to use it. You will only need to edit your "php.ini" file, add the code below and restart your server.

curl.cainfo=/path/to/bundle/cacert.pem

Note that according to cURL documentation: "This is required to be an absolute path.".