承接 laraditz/experian 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

laraditz/experian

最新稳定版本:1.0.1

Composer 安装命令:

composer require laraditz/experian

包简介

A simple laravel package for Experian.

README 文档

README

Latest Version on Packagist Total Downloads GitHub Actions

A simple laravel package for Experian B2B Web Service.

Installation

You can install the package via composer:

composer require laraditz/experian

Before Start

Configure your variables in your .env (recommended) or you can publish the config file and change it there.

EXPERIAN_VENDOR=<vendor>
EXPERIAN_USERNAME=<username>
EXPERIAN_PASSWORD=<password>

(Optional) You can publish the config file via this command:

php artisan vendor:publish --provider="Laraditz\Experian\ExperianServiceProvider" --tag="config"

Run the migration command to create the necessary database table.

php artisan migrate

Available Methods

Below are all methods available under this package.

  • ccrisSearch(string $name, string $id, string $dob, ?string $country, ?string $id2, ?string $phone, ?string $email, ?string $address)
    • At least one of phone, email, address must be present.
    • id argument is for New IC or Passport No.
    • id2 argument is for old IC or Poice ID.
    • IC format XXXXXX-XX-XXXX.
    • dob format YYYY-MM-DD.
    • country default to MY.
  • checkProcessingReport(string $refNo)
  • getRecord(string $refNo)

Usage

Search CCRIS

// Using service container
$experian = app('experian')->ccrisSearch(
            name: "Ali bin Ahmad",
            id: "92XXXX-XX-XXXX",
            dob: "YYYY-MM-DD",
            phone: "012XXXXXXX" 
        );  

// Using facade
$experian = \Experian::ccrisSearch(
            name: "Ali bin Ahmad",
            id: "92XXXX-XX-XXXX",
            dob: "YYYY-MM-DD",
            phone: "012XXXXXXX" 
        ); 

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 raditzfarhan@gmail.com instead of using the issue tracker.

Credits

License

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

统计信息

  • 总下载量: 78
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-05-26