-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
86 lines (52 loc) · 1.9 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
81
82
83
84
85
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
------------
Installation
------------
Add the lib directory to your PHP include path to access the SDK from
your application:
composer require simplifycommerce/payment
laravel config/app.php
insert line : 'aliases' => [..
..
'simplifycommerce' => simplifycommerce\lib\Simplify::class
]
Using the Laravel Package
--------------
Use the following script while using package in laravel project
replace public and private key with your keys
<?php
use Lib\Simplify;
use Lib\Simplify\Simplify_Payment;
Simplify::$publicKey = 'YOUR_PUBLIC_KEY';
Simplify::$privateKey = 'YOUR_PRIVATE_KEY';
$obj = Simplify_Payment::findPayment('PAYMENT_ID');
echo '<pre>';
print_r($obj);
echo '</pre';
?>
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.