-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
81 lines (52 loc) · 1.84 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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.