LaravelPackages.net
Acme Inc.
Toggle sidebar
softlogic-gt/neopay-laravel

NeoPay Laravel Payment Gateway

66
0
v1.0.23
About softlogic-gt/neopay-laravel

softlogic-gt/neopay-laravel is a Laravel package for neopay laravel payment gateway. It currently has 0 GitHub stars and 66 downloads on Packagist (latest version v1.0.23). Install it with composer require softlogic-gt/neopay-laravel. Discover more Laravel packages by softlogic-gt or browse all Laravel packages to compare alternatives.

Last updated

NoePay Laravel Payment Gateway

Send payment transactions to NeoPay (Neonet). You must have an active account for this to work. The package automatically validates all input data.

Installation

composer require softlogic-gt/neopay-laravel

Set your environment variables

NEOPAY_TEST=true
NEOPAY_AFFILLIATION=
NEOPAY_TERMINAL=
NEOPAY_USER=
NEOPAY_PASSWORD=

Usage

In the constructor, if the email is specified, a confirmation receipt is sent. The default subject is Comprobante de pago.

Sale

use SoftlogicGT\NeoPayLaravel\NeoPay;

$creditCard = '4000000000000416';
$expirationMonth = '2';
$expirationYear = '26';
$cvv2 = '123';
$amount = 1230.00;
$externalId = '557854';

$server = new NeoPay(
    [
        'receipt' => [
            'email'   => '[email protected]',
            'subject' => 'My custom subject',
            'name'    => 'The name to print on the receipt'
        ]
    ]
);

$response = $server->sale($creditCard, $expirationMonth, $expirationYear, $cvv2, $amount, $externalId);

It will throw an exception if any error is received from NeoPay, or an object with the following info:

[[auditNumber] => 111111 [referenceNumber] => 254555555 [authorizationNumber] => 022226 [responseCode] => 00 [messageType] => 0210]

Comments