Simple CV and Resume parsing for Laravel applications.
You can install the package via composer:
composer require worksome/ceeveeYou can publish the config file with:
php artisan vendor:publish --tag="ceevee-config"This is the contents of the published config file:
return [
'default' => env('CEEVEE_DRIVER', 'null'),
'services' => [
'sovren' => [
'account_id' => env('SOVREN_ACCOUNT_ID'),
'service_key' => env('SOVREN_SERVICE_KEY'),
'region' => 'eu',
'options' => [],
],
],
];$ceevee = new Worksome\Ceevee\Ceevee();
$details = $ceevee->read($file);
// Get the summary
$details->summary();Check out Worksome\Ceevee\Support\CVDetail for available options.
composer testPlease see GitHub Releases for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.