Download the PHP package checkout/checkout-php-api without Composer
On this page you can find all versions of the php package checkout/checkout-php-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download checkout/checkout-php-api
More information about checkout/checkout-php-api
Files in checkout/checkout-php-api
Package checkout-php-api
Short Description Checkout PHP API Library
License MIT
Homepage https://github.com/checkout/checkout-php-library
Informations about the package checkout-php-api
:heavy_exclamation_mark: This library points to Checkout.com's classic API. Please refer to the latest PHP SDK instead to benefit from the updated API
Requirements
PHP 5 > 5.3.0
How to use the library
Add the latest version of checkout-php-library into your project by using Composer or manually:
Using Composer (Recommended)
Either run the following command in the root directory of your project:
Or require the Checkout.com package inside the composer.json of your project:
Manually
Download or clone the github repository, master or download a release, and manually add it to your project.
Example
After adding the library to your project, include the file autoload.php found in root of the library.
You will be required to set the secret key when initialising a new APIClient instance. You will also have option for other configurations defined in AppSettings.php file.
The constructor available for configuration:
By default both $connectTimeout and $readTimeout are to 60 seconds. You may change them as needed.
$env accepts either 'sandbox'
or 'live'
as value. This parameter allow you to shift between the sandbox environment or live environment. By Default the sandbox environment will be used.