Download the PHP package acceptcrypto/acceptcryptophp without Composer
On this page you can find all versions of the php package acceptcrypto/acceptcryptophp. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download acceptcrypto/acceptcryptophp
More information about acceptcrypto/acceptcryptophp
Files in acceptcrypto/acceptcryptophp
Package acceptcryptophp
Short Description MuntPHP is a library by Munt to interact with Munt Checkout.
License MIT
Informations about the package acceptcryptophp
AcceptCrypto PHP library
Documentation: https://docs.acceptcryp.to
The PHP library is meant for creating custom checkout forms and verifying a payment in the back-end. It's a good practise to keep verifying the payment till its fully confirmed.
Getting started
You can either install our library using composer composer require acceptcrypto/acceptcryptophp
or download the source code directly from GitHub
Integrating
Start checkout process
Add an email address to a payment automatically, to make sure customers use the same email as they did on your website for example. Email address is optional but recommended.
The response will be as followed;
- error
- Boolean, returns if the request has encountered any errors.
- message
- String, only returns after an error has occurred
- token
- String, payment token to be used in our Javascript library or API.
- url
- String, can be redirected to to let the user pay
Create a custom checkout form
This code can be used to create a custom checkout form in the back-end rather than on our dashboard. The background and customer email address are both optional parameters but recommended. The background color will be the AcceptCrypto color #FABD58 by default.
The response will be as followed;
- error
- Boolean, returns if the request has encountered any errors.
- message
- String, only returns after an error has occurred
- token
- String, payment token to be used in our Javascript library or API.
- url
- String, can be redirected to to let the user pay
Checking payment id
Check if the payment has been successful from the above returned payment id.
The response will be as followed;
- error
- Boolean, returns if the request has encountered any errors.
- message
- String, only returns after an error has occurred.
- paid
- Boolean, returns if the payment has been paid.
- confirmed
- Boolean, returns if the payment has been fully confirmed.
- date
- Timestamp, returns when the payment was made.
Checking email
Check if the given email address has paid successfully.
The response will be as followed;
- error
- Boolean, returns if the request has encountered any errors.
- message
- String, only returns after an error has occurred.
- paid
- Boolean, returns if the payment has been paid.
- confirmed
- Boolean, returns if the payment has been fully confirmed.
- lastPaid
- Timestamp, returns the date when the email has paid last.