worksome / ceevee
Simple CV and Resume parsing for Laravel applications.
Fund package maintenance!
worksome
Installs: 358 875
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 14
Forks: 0
Open Issues: 0
Requires
- php: ^8.2
- illuminate/contracts: ^10.0 || ^11.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- guzzlehttp/guzzle: ^7.8
- larastan/larastan: ^2.6
- nunomaduro/collision: ^7.0 || ^8.1
- orchestra/testbench: ^8.0 || ^9.0
- pestphp/pest: ^2.33
- pestphp/pest-plugin-laravel: ^2.2
- worksome/coding-style: ^2.8
README
Simple CV and Resume parsing for Laravel applications.
Install
You can install the package via composer:
composer require worksome/ceevee
You 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' => [], ], ], ];
Usage
$ceevee = new Worksome\Ceevee\Ceevee(); $details = $ceevee->read($file); // Get the summary $details->summary();
Check out Worksome\Ceevee\Support\CVDetail
for available options.
Testing
composer test
Changelog
Please see GitHub Releases for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.