haitv282 / simplifycommerce-sdk-php
Simplify Commerce PHP SDK Library
This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.
Installs: 850
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
pkg:composer/haitv282/simplifycommerce-sdk-php
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-04-13 00:46:03 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:
require_once 'Simplify.php'
Using the SDK
--------------
To run a payment though Simplify Commerce use the following
script substituting your public and private API keys:
<?php
require_once("Simplify.php");
Simplify::$publicKey = 'YOUR_PUBLIC_API_KEY';
Simplify::$privateKey = 'YOUR_PRIVATE_API_KEY';
$payment = Simplify_Payment::createPayment(array(
"card" => array(
"number" => "5555555555554444",
"expMonth" => 11,
"expYear" => 15,
"cvc" => "123"
),
'amount' => '1000',
'description' => 'prod description',
'currency' => 'USD'
));
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/support for information.
Copyright
---------
Copyright (c) 2013 - 2019 MasterCard International Incorporated
All rights reserved.