k2oumais / lei
LEI generator and validator
1.0.2
2023-03-20 14:08 UTC
Requires
- php: ^7.4|^8.0|^8.1|^8.2
- ext-bcmath: *
- illuminate/contracts: ^10.0
- spatie/laravel-package-tools: ^1.14.2
Requires (Dev)
- laravel/pint: ^1.6
- nunomaduro/collision: ^7
- orchestra/testbench: ^8.0.10
- pestphp/pest: ^2.0.1
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
README
A package to generate and validate a LEI (Legal Entity Identifier).
Installation
You can install the package via composer:
composer require k2oumais/lei
You can publish the config file with:
php artisan vendor:publish --tag="lei-config"
This is the contents of the published config file:
return [ /* |-------------------------------------------------------------------------- | LEI Prefix |-------------------------------------------------------------------------- | | This is the Local Operating Unit (LOU) code. | */ 'lou_code' => env('LEI_LOU_CODE', '1234'), /* |-------------------------------------------------------------------------- | LEI Reserved |-------------------------------------------------------------------------- | | This is the reserved value of an LEI. | */ 'reserved' => env('LEI_RESERVED_VALUE', '00'), ];
Usage
$lei = new K2ouMais\Lei\Lei(); // Generate a LEI $generatedLei = $lei->generate(); // 123400V9I8UWAKBIWH79 // Validate a LEI $validateLei = $lei->validate('123400V9I8UWAKBIWH79'); // true $validateLei = $lei->validate('12340013KCVCMU58YY44'); // false
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
License
The MIT License (MIT). Please see License File for more information.