geeky/cvparser

This package parses CV via daxtra then gives you a structured data.

Maintainers

Package info

github.com/TheGeekyM/CV

pkg:composer/geeky/cvparser

Statistics

Installs: 1 539

Dependents: 0

Suggesters: 0

Stars: 10

Open Issues: 1

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');