dev1d3 / checkoutpage-sdk
1D3 PHP SDK
Installs: 5 226
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/dev1d3/checkoutpage-sdk
Requires
- ext-json: *
- ext-openssl: *
Requires (Dev)
- phpunit/phpunit: ^6.5||^7.2
- squizlabs/php_codesniffer: ^3.3
README
This is a set of libraries in the PHP language to ease integration of your service with the 1D3 Checkout Page.
Please note that for correct SDK operating you must have at least PHP 7.0.
Payment flow
Installation
Install with composer
composer require dev1d3/checkoutpage-sdk
Get URL for payment
$gate = new dev1d3\Gate('secret'); $payment = new dev1d3\Payment('11', 'some payment id'); $payment->setPaymentAmount(1000)->setPaymentCurrency('EUR'); $url = $gate->getPurchaseCheckoutPageUrl($payment);
$url here is the signed URL.
If you want to use another domain for URL you can change it with optional Gate constructor parameter:
new dev1d3\Gate('secret', 'https://mydomain.com/payment');
or change it with method
$gate->setPaymentBaseUrl('https://mydomain.com/payment');
Handle callback from 1D3
You'll need to autoload this code in order to handle notifications:
$gate = new dev1d3\Gate('secret'); $callback = $gate->handleCallback($data);
$data is the JSON data received from payment system;
$callback is the Callback object describing properties received from payment system;
$callback implements these methods:
Callback::getPaymentStatus();Get payment status.Callback::getPayment();Get all payment data.Callback::getPaymentId();Get payment ID in your system.
TODO
- Checkout Page opening
- Notifications handling
- Direct Gate requests
- PHPDoc
