trijayadigital / cekmutasi-laravel
Development & Integration Toolkit for Cekmutasi.co.id
Installs: 5 708
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/trijayadigital/cekmutasi-laravel
Requires
- php: >=5.4
- laravel/framework: >=5.0
Requires (Dev)
- phpunit/phpunit: ^7
This package is auto-updated.
Last update: 2025-10-29 00:38:07 UTC
README
Development & Integration Toolkit for Laravel Framework (5.0+). For other web framework/language/plugin, please go to https://github.com/trijayadigital/cekmutasi
Requirements
- PHP 5.4+
- Laravel Framework v5.0+
- cURL extension enabled
Installation
For Laravel 5.5+ SKIP step 2 & 3 because we already use Package Discovery feature so Laravel will automatically register the Service Provider and Alias at the time of installation
- Run command
composer require trijayadigital/cekmutasi-laravel:dev-master- Open your config/app.php and add this code to the providers array, it will looks like:
'providers' => [
      // other providers
      Tridi\Cekmutasi\ServiceProvider::class,
],- Add this code to your class aliases array
'aliases' => [
      // other aliases
      'Cekmutasi' => Tridi\Cekmutasi\Facade::class,
],- Run command
composer dump-autoload- Then
php artisan vendor:publish --provider="Tridi\Cekmutasi\ServiceProvider"- Edit config/cekmutasi.php and add your API Key & Signature, or you can add this code to your .env file
CEKMUTASI_API_KEY="place your api key here"
CEKMUTASI_API_SIGNATURE="place your api signature here"How To Use?
You can use cekmutasi library by importing cekmutasi class. Here is the example of using cekmutasi class in Controller
<?php
namespace App\Http\Controllers;
use Cekmutasi;
class AnotherController extends Controller
{
	public function index()
	{
	    $mutation = Cekmutasi::bank()->mutation([
					'date'		=> [
						'from'	=> date('Y-m-d') . ' 00:00:00',
						'to'	=> date('Y-m-d') . ' 23:59:59'
					]
				]);
	    dd($mutation);
	}
}
?>For further example, you can check out in example/CekmutasiController.php included in this package
Available Methods
- 
balance()Get cekmutasi account balance 
- 
checkIP()Check your detected IP address. This IP should be added to Whitelist IP in your integration if you want to use HTTP Request method or some plugins 
- 
catchIPN()Handle callback/ipn data. This method is highly recommended for use because it has pre-build callback/ipn security verification 
- 
bank()Load Bank service. Below are the available methods from bank service 
- 
paypal()Load PayPal service. Below are the available methods from paypal service 
- 
gopay()Load GoPay service. Below are the available methods from gopay service 
- 
ovo()Load OVO service. Below are the available methods from ovo service - 
list()Get ovo account list 
- 
detail()Get ovo account detail 
- 
balance()Get total balance of registered ovo accounts 
- 
mutation()Get ovo mutation (max 1000) 
- 
transferBankList()Get the available destination banks 
- 
transferBankInquiry()Make transfer bank inquiry 
- 
transferBank()Proccess transfer from OVO to bank 
- 
transferBankDetail()Get transaction detail of bank transfer 
- 
transferOVOInquiry()Make transfer OVO inquiry 
- 
transferOVO()Proccess transfer from OVO to OVO 
 
- 
Security Advice
For the best way to handle Callback/IPN, we strongly recommend you to use the catchIPN() method with pre-build security validation to handle and verifiying incoming callback/ipn data.