adrianmejias / laravel-routing-numbers
Laravel API for ACH/NACHA Bank Routing Numbers.
Fund package maintenance!
adrianmejias
Ko Fi
Liberapay
paypal.me/adrianmejias
Requires
- php: ^8.0.2|^8.1
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- ext-openssl: *
- illuminate/support: ^9.17
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.8
- guzzlehttp/guzzle: ^7.4
- mockery/mockery: ^1.5
- orchestra/testbench: ^7.5
- pestphp/pest: ^1.21
- phpstan/extension-installer: ^1.1
- phpstan/phpstan: ^1.7
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.1
This package is auto-updated.
Last update: 2024-04-30 00:27:03 UTC
README
ACH/NACHA Bank Routing Numbers API package courtesy of https://www.routingnumbers.info/ for Laravel.
Installation
This version supports PHP 8.0 or 8.1
. You can install the package via composer:
composer require adrianmejias/laravel-routing-numbers
Usage
Example
<?php use RoutingNumbers; $bank = RoutingNumbers::bankName('021000021');
Expected Output:
$bank = 'JPMORGAN CHASE';
Api Requests
RoutingNumbers::bankName($routingNumber)
- Get bank name from routing number.RoutingNumbers::bankData($routingNumber)
- Get bank data from routing number.
Testing
composer test
Contributing
Thank you for considering contributing to Laravel Routing Numbers! You can read the contribution guide here.
Code of Conduct
In order to ensure that the community is welcoming to all, please review and abide by the Code of Conduct.
Security Vulnerabilities
Please see the security file for more information.
License
The MIT License (MIT). Please see the license file for more information.