承接 abinash/ifsc-validator 相关项目开发

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

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

abinash/ifsc-validator

最新稳定版本:v1.1.1

Composer 安装命令:

composer require abinash/ifsc-validator

包简介

README 文档

README

Latest Version License

📌 Introduction

Laravel IFSC Validator is a simple package that allows you to fetch details of an Indian bank IFSC code using Razorpay's IFSC API.

🚀 Installation

You can install the package via Composer:

composer require abinash/ifsc-validator

📌 Publish Configuration (Optional)

Edit your app/config/app.php and add the Service Provider

'providers' => [
    // Other service providers...
    Abinash\IFSCValidator\IFSCValidatorServiceProvider::class,
],
 'aliases' => [
    'IFSC' => Abinash\IFSCValidator\Facades\IFSC::class,
]

🔧 Usage

Using the Facade

use IFSC;

$ifscDetails = IFSC::getBankDetails('SBIN0007500');
print_r($ifscDetails);

Using Dependency Injection

use Abinash\IFSCValidator\Services\IFSCService;

class BankController {
    public function getIFSC(IFSCService $ifscService) {
        return $ifscService->getBankDetails('SBIN0007500');
    }
}

🔗 API Source

This package uses the free Razorpay IFSC API to fetch bank details.

🏷 License

This package is open-source software licensed under the MIT license.

👤 Author

Abinash Bhatta
📧 abinash889@gmail.com
🚀 Follow me on GitHub: Abinash

⭐ Contribute & Support

If you find this package helpful, please ⭐ star the repository and contribute via pull requests! 🙌

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-03-26