https://github.com/sasa-b/monri-standalone
A PHP client library for Monri Payment Gateway redirect integration.
https://github.com/sasa-b/monri-standalone
monri monri-payments payment-gateway php php-library
Last synced: 15 days ago
JSON representation
A PHP client library for Monri Payment Gateway redirect integration.
- Host: GitHub
- URL: https://github.com/sasa-b/monri-standalone
- Owner: sasa-b
- License: apache-2.0
- Created: 2021-08-06T08:24:53.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-02T09:46:06.000Z (over 2 years ago)
- Last Synced: 2025-12-26T08:34:41.505Z (6 months ago)
- Topics: monri, monri-payments, payment-gateway, php, php-library
- Language: PHP
- Homepage:
- Size: 2.7 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# monri-standalone
### Usage
```php
require_once '../vendor/autoload.php';
// Development
$monri = Monri::testApi('{authenticity_token}', '{merchant_key}', Options::default());
// Production
$monri = Monri::api('{authenticity_token}', '{merchant_key}', Options::default());
$customer = new Customer(
new FullName('Michael Scott'),
new Email('michale.scott@gmail.com'),
new Phone('00387653245'),
new Address('Dunder Mifflin 1', 'Scranton', '18503', 'USA')
);
$order = new Order(
new OrderInfo('Paper clips'),
new OrderNumber('0000001'),
new Amount(1000),
new Currency('USD')
);
//
// API 1
//
// Authorize transaction
$monri->authorize($customer, $order);
// Purchase
$monri->purchase($customer, $order);
// Capture
$monri->capture($order);
// Refund
$monri->refund($order);
// Void
$monri->void($order);
//
// API 2
//
// Authorize transaction
$request = Authorize::for($customer, $order, Options::default());
// Purchase
$request = Purchase::for($customer, $order, Options::default());
// Capture
$request = Capture::for($order);
// Refund
$request = Refund::for($order);
// Void
$request = VoidTransaction::for($order);
$monri->transaction($request);
```
### Environment Variables
If any of the following is set Monri client will read them from the env.
```
MONRI_SUCCESS_URL=
MONRI_CANCEL_URL=
MONRI_CALLBACK_URL=
MONRI_TOKEN=
MONRI_KEY=
MONRI_LANG=
```
### Transaction types
* Authorization
* Purchase
* Capture
* Refund
* Void
Read more at [Monri official documentation](https://ipgtest.monri.com/en/documentation/v2_form)