cendekia/nova-faspay-tools

A Faspay payment gateway tool for Laravel Nova.


README

Latest Version on Packagist Build Status StyleCI Total Downloads

RecurringCheck UpdateRecurringMember

Installation

You can install the package in to a Laravel app that uses Nova via composer:

composer require cendekia/nova-faspay-tools

You need to add some credentials from Faspay into .env file, like so:

FASPAY_RECURRING_MERCHANT_ID=xxxx
FASPAY_RECURRING_MERCHANT_NAME=xxxxx
FASPAY_RECURRING_CLIENT_ID=xxxxx
FASPAY_RECURRING_PASSWORD=xxxxx
FASPAY_RECURRING_CHECK_URL=https://xxxxxx
FASPAY_RECURRING_MEMBER_DATA_URL=https://xxxxxx

Next up, you must register the tool with Nova. This is typically done in the tools method of the NovaServiceProvider.

// in app/Providers/NovaServiceProvider.php

// ...

public function tools()
{
    return [
        // ...
        new \Cendekia\FaspayTools\FaspayTools,
    ];
}

Todo :

  • Recurring member check
  • Update recurring member data
  • Setting with local data

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email me@cendekiapp.com instead of using the issue tracker.

Support

Buy me a cup of ☕ americano on the rocks. Patreon

License

The MIT License (MIT). Please see License File for more information.