saurabhsharma / dl-data-extractor
A simple class to return Driving License information, such as Driver First Name, Last Name, License Number etc.
Installs: 129
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/saurabhsharma/dl-data-extractor
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-09-30 00:37:38 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