geeky / cvparser
This package parses CV via daxtra then gives you a structured data.
Installs: 1 212
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 4
Forks: 3
Open Issues: 1
This package is auto-updated.
Last update: 2025-04-16 00:37:44 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');