Skip to content

cdvedia/irsfa

Repository files navigation

Laravel IRSFA

Latest Version on Packagist Total Downloads GitHub Actions

This package support IRSFA API for Laravel 8 version. Please reffer to this site https://aksaradata.id/ for more information.

Documentation

For the API documentation, check Irsfa Api Developer

Installation

You can install the package via composer:

composer require cdvedia/irsfa

Configuration

To get started, you'll need to publish vendor assets for Irsfa.

php artisan vendor:publish --tag=irsfa-config

This will create the config/irsfa.php file in your app, modify it to set your configuration.

Usage

Via Facade

If you prefer the classic Laravel facade style, this might be the way to go, for example:

use Cdvedia\Irsfa\Facades\Irsfa;
# or
use Irsfa;

Irsfa::getToken();

For more information on how to use the other class, check out the awesome wiki documentation.

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

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

Credits

License

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

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.