teamzac/laravel-bluepay is a Laravel package for a laravel package to integrate bluepay payments.
It currently has 0 GitHub stars and 4 downloads on Packagist (latest version 0.0.1).
Install it with composer require teamzac/laravel-bluepay.
Discover more Laravel packages by teamzac
or browse all Laravel packages to compare alternatives.
Last updated
If you need to reach the BluePay API in Laravel 5.8+ but don't particularly care for the official SDK, this might be for you.
This package is not yet ready for production use. It does not yet have tests and the API should be considered unstable. Use at your own risk.
You can install the package via composer:
composer require teamzac/laravel-bluepay
The service provider and BluePay facade will be automatically registered for you.
Using the facade to create save customer information and return a token for future use
BluePay::tokens()->setCustomer([
// data
])->setCard([
// data
])->create();
Using the facade to charge a token
BluePay::tokens()->setToken($token)->charge(100.00);
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.