geeky / cvparser
This package parses CV via daxtra then gives you a structured data.
1.1.3
2019-01-23 10:31 UTC
This package is auto-updated.
Last update: 2026-03-16 02:36:25 UTC
README
This package parses CV via daxtra then gives you a structured data.
Installation
Install using composer:
composer require geeky/cvparser
Then, in config/app.php, add the following to the service providers array.
array(
...
Geeky\CV\ParserServiceProvider::class,
)
Finally, in config/app.php, add the following to the facades array.
array(
'CV' => Geeky\CV\ParserFacade::class,
)
Usage
Example usage using Facade:
$response = CV::parse('resume_url');