kudaping

Kudaping — A Laravel Package for Kuda Bank Open API

MIT License

Downloads
22
Stars
3
Committers
1

KUDA Open API Laravel Package

Implement KUDA bank Open API in Laravel

Badges

License

MIT

Installation

Install kudaping with composer

  composer require emiracle/kudaping

Configuration

Publish the configuration file using this command:

  php artisan vendor:publish --provider="eMiracle\Kudaping\KudapingServiceProvider"

Environment Variables

To run this project, you will need to add the following environment variables to your .env file

KUDA_API_KEY KUDA_EMAIL_ADDRESS KUDA_ENVIRONMENT

Documentation

Documentation

Contributing

Contributions are always welcome!

See contributing.md for ways to get started.

Please adhere to this project's code of conduct.

Usage/Examples

<?php


namespace App\Http\Controllers;


use eMiracle\Kudaping\Kudaping;

class KudaController extends Controller
{
    private Kudaping $kuda;
    public function __construct()
    {
        $this->kuda = new Kudaping();
    }

    public function getBankList(): array
    {
        return $this->kuda->getBankList();
    }
}

Package Rankings
Top 34.68% on Packagist.org
Badges
Extracted from project README
GitHub issues GitHub forks GitHub stars GitHub license Twitter Latest Stable Version Total Downloads Latest Unstable Version License PHP Version Require
Related Projects