kimoslim / simplify
Composer package for payment API from mastercard, Simplify Commerce.
Installs: 4 325
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/kimoslim/simplify
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-11-28 15:10:19 UTC
README
PHP SDK for Simplify Commerce
What is it?
------------
A PHP API to the Simplify Commerce payments platform. If you have
not already got an account sign up at https://www.simplify.com/commerce.
Installation
------------
Add the lib directory to your PHP include path to access the SDK from
your application:
composer require kimoslim/simplify
Using the SDK
--------------
To run a payment though Simplify Commerce use the following
script substituting your public and private API keys:
<?php
require-once 'vendor/autoload.php';
\KimoSlim\Simplify::$publicKey = 'YOUR_PUBLIC_API_KEY';
\KimoSlim\Simplify::$privateKey = 'YOUR_PRIVATE_API_KEY';
$payment = \KimoSlim\SimplifyPayment::createPayment(array(
"card" => array(
"number" => "5555555555554444",
"expMonth" => 11,
"expYear" => 15,
"cvc" => "123"
),
'amount' => '1000',
'description' => 'prod description',
'currency' => 'AUD'
));
print_r($payment);
?>
For more examples see https://www.simplify.com/commerce/docs/sdk/php.
Version
-------
This is version 1.6.0 of the SDK. See CHANGES.txt for a list
of changes. For an up-to-date version check at
https://www.simplify.com/commerce/docs/sdk/php.
Licensing
---------
Please see LICENSE.txt for details.
Documentation
-------------
API documentation is available in the doc directory in HTML. For more
detailed information on the API with examples visit the online
documentation at https://www.simplify.com/commerce/docs/sdk/php.
Support
-------
Please see https://www.simplify.com/commerce/docs/support for information.
Copyright
---------
Copyright (c) 2013 - 2018 MasterCard International Incorporated
All rights reserved.