saurabhsharma / dl-data-extractor
A simple class to return Driving License information, such as Driver First Name, Last Name, License Number etc.
v1.0.2
2024-03-04 16:50 UTC
Requires
- php: ^7.1 || ^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2
Requires (Dev)
- pestphp/pest: ^1.22
This package is not auto-updated.
Last update: 2025-03-31 22:19:00 UTC
README
A simple class to return Driving License information, such as Driver First Name, Last Name, License Number etc. Currently only Support PDF417 BarCodes
Installation
Using composer:
composer require saurabhsharma/dl-data-extractor
You are then free to use it as needed within your projects.
Usage
<?php use SaurabhSharma\DLExtractor\DLExtractor; DLExtractor::parse('pdf417-bar-code')->toArray(); // get Response in Array DLExtractor::parse('pdf417-bar-code')->toJson(); // get Response in Json String