{"id":36985110,"url":"https://github.com/sharpapi/php-resume-parser","last_synced_at":"2026-01-13T23:01:00.107Z","repository":{"id":329149062,"uuid":"1118345989","full_name":"sharpapi/php-resume-parser","owner":"sharpapi","description":"Resume/CV Job Match Score - Smart AI scoring for CV-to-job compatibility","archived":false,"fork":false,"pushed_at":"2026-01-10T14:20:11.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-11T04:22:54.807Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sharpapi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-17T16:06:00.000Z","updated_at":"2026-01-10T14:20:13.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sharpapi/php-resume-parser","commit_stats":null,"previous_names":["sharpapi/php-resume-parser"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/sharpapi/php-resume-parser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sharpapi%2Fphp-resume-parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sharpapi%2Fphp-resume-parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sharpapi%2Fphp-resume-parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sharpapi%2Fphp-resume-parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sharpapi","download_url":"https://codeload.github.com/sharpapi/php-resume-parser/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sharpapi%2Fphp-resume-parser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28399535,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-13T23:00:38.872Z","updated_at":"2026-01-13T23:01:00.100Z","avatar_url":"https://github.com/sharpapi.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"![SharpAPI GitHub cover](https://sharpapi.com/sharpapi-github-laravel-bg.jpg \"SharpAPI PHP Client\")\n\n# Resume/CV Parser for PHP 8\n\n## 🎯 Extract structured data from resumes (PDF/DOC/DOCX/TXT/RTF) — powered by SharpAPI AI.\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/sharpapi/php-resume-parser.svg?style=flat-square)](https://packagist.org/packages/sharpapi/php-resume-parser)\n[![Total Downloads](https://img.shields.io/packagist/dt/sharpapi/php-resume-parser.svg?style=flat-square)](https://packagist.org/packages/sharpapi/php-resume-parser)\n\nCheck the full documentation on the [Resume/CV Parser API](https://sharpapi.com/en/catalog/ai/hr-tech/resume-cv-parsing) page.\n\n---\n\n## Quick Links\n\n| Resource | Link |\n|----------|------|\n| **Main API Documentation** | [Authorization, Webhooks, Polling \u0026 More](https://documenter.getpostman.com/view/31106842/2s9Ye8faUp) |\n| **Postman Documentation** | [View Docs](https://documenter.getpostman.com/view/31106842/2sBXVeGsaE) |\n| **Product Details** | [SharpAPI.com](https://sharpapi.com/en/catalog/ai/hr-tech/resume-cv-parsing) |\n| **SDK Libraries** | [GitHub - SharpAPI SDKs](https://github.com/sharpapi) |\n\n---\n\n## Requirements\n\n- PHP \u003e= 8.0\n\n---\n\n## Installation\n\n### Step 1. Install the package via Composer:\n\n```bash\ncomposer require sharpapi/php-resume-parser\n```\n\n### Step 2. Visit [SharpAPI](https://sharpapi.com/) to get your API key.\n\n---\n\n## Laravel Integration\n\nBuilding a Laravel application? Check the Laravel package version: https://github.com/sharpapi/laravel-resume-parser\n\n---\n\n## What it does\n\nThis package uploads a resume file to the SharpAPI AI endpoint and returns a status URL to poll for results. When the job completes, you can fetch a structured JSON containing parsed resume data (contact info, experience, education, skills, and more).\n\n---\n\n## Usage\n\n```php\n\u003c?php\n\nrequire __DIR__ . '/vendor/autoload.php';\n\nuse SharpAPI\\ResumeParser\\ResumeParserClient;\nuse GuzzleHttp\\Exception\\GuzzleException;\n\n$resumePath = __DIR__ . '/resume.pdf'; // make sure this file exists\n$language   = 'English';\n\n$client = new ResumeParserClient(apiKey: 'your_api_key_here');\n\ntry {\n    // submit parsing job\n    $statusUrl = $client-\u003eparseResume(\n        $resumePath,\n        $language // optional – English is default\n    );\n\n    // Optional: adjust polling settings\n    $client-\u003esetApiJobStatusPollingInterval(10); // seconds\n    $client-\u003esetApiJobStatusPollingWait(180);    // seconds total wait\n\n    // fetch results when ready\n    $result = $client-\u003efetchResults($statusUrl)-\u003etoArray();\n    print_r($result);\n} catch (GuzzleException $e) {\n    // Handle SharpAPI or network errors\n    echo $e-\u003egetMessage();\n}\n```\n\n---\n\n## Example Response (trimmed)\n\n```json\n{\n  \"data\": {\n    \"type\": \"api_job_result\",\n    \"id\": \"5a113c4d-38e9-43e5-80f4-ec3fdea3420e\",\n    \"attributes\": {\n      \"status\": \"success\",\n      \"type\": \"hr_parse_resume\",\n      \"result\": {\n        \"positions\": [\n          {\n            \"skills\": [\n              \"Acceptance testing\",\n              \"Technical investigation\",\n              \"Exploratory testing\",\n              \"Agile\",\n              \"Test environments\",\n              \"Test management tools\",\n              \"UAT knowledge\",\n              \"Writing test reports\",\n              \"Organising, conducting and supporting test activities\",\n              \"Performance testing\",\n              \"Integration testing\",\n              \"Rapid response to equipment failures\",\n              \"Implementing immediate repairs\",\n              \"Participating in audits and reviews\",\n              \"Monitoring and reporting repair trends\",\n              \"Drawings and documentation updates\",\n              \"Executing test cases\",\n              \"Documenting results and defects\",\n              \"Testing and fault finding finished systems\",\n              \"Reporting issues to Test Manager\",\n              \"Assisting in software installation\",\n              \"Experience of testing Web, PC and mobile based software\",\n              \"Understanding iterative software development lifecycle\",\n              \"Manual testing methods and processes\",\n              \"Technical knowledge of Test Systems hardware and software\",\n              \"Planning and task management skills\",\n              \"Microsoft operating systems\",\n              \"Testing GUI based software\"\n            ],\n            \"country\": \"United Kingdom\",\n            \"end_date\": null,\n            \"start_date\": \"2008-06-01\",\n            \"job_details\": \"Responsible for the whole test process from planning, through test plan development, execution \u0026 result reporting. Also involved in the development and improvement of the test functions, putting forward suggestions and implementing plans accordingly. Duties included organising, conducting and supporting test activities, performance testing, integration testing, rapid response to equipment failures, implementing immediate repairs, participating in audits and reviews, monitoring and reporting repair trends, updating drawings and documentation, executing test cases, documenting results and defects, testing and fault finding finished systems, reporting issues to Test Manager, and assisting in software installation.\",\n            \"company_name\": \"IT \u0026 Telecoms Company\",\n            \"position_name\": \"Test Engineer\"\n          }\n        ],\n        \"candidate_name\": \"Linda Harris\",\n        \"candidate_email\": \"linda.h@dayjob.co.uk\",\n        \"candidate_phone\": \"02476 000 0000, 0887 222 9999\",\n        \"candidate_address\": \"34 Made Up Road, Coventry, CV66 7RF\",\n        \"candidate_language\": \"English\",\n        \"education_qualifications\": [\n          {\n            \"country\": \"United Kingdom\",\n            \"end_date\": \"2008-06-01\",\n            \"start_date\": \"2005-09-01\",\n            \"degree_type\": \"Bachelor’s Degree or equivalent\",\n            \"school_name\": \"Nuneaton University\",\n            \"school_type\": \"University or equivalent\",\n            \"learning_mode\": \"In-person learning\",\n            \"education_details\": \"\",\n            \"faculty_department\": \"\",\n            \"specialization_subjects\": \"Software Engineering\"\n          },\n          {\n            \"country\": \"United Kingdom\",\n            \"end_date\": \"2005-06-01\",\n            \"start_date\": \"2000-09-01\",\n            \"degree_type\": \"High School/Secondary School Diploma or equivalent\",\n            \"school_name\": \"Coventry North School\",\n            \"school_type\": \"High School/Secondary School or equivalent\",\n            \"learning_mode\": \"In-person learning\",\n            \"education_details\": \"A levels: Maths (A), English (B), Technology (B), Science (C)\",\n            \"faculty_department\": \"\",\n            \"specialization_subjects\": \"\"\n          }\n        ],\n        \"candidate_spoken_languages\": [\n          \"German\"\n        ],\n        \"candidate_honors_and_awards\": [],\n        \"candidate_courses_and_certifications\": [\n          \"ISEB certification\"\n        ]\n      }\n    }\n  }\n}\n```\n\n---\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n---\n\n## Credits\n\n- [A2Z WEB LTD](https://github.com/a2zwebltd)\n- [Dawid Makowski](https://github.com/makowskid)\n- Boost your [PHP AI](https://sharpapi.com/) capabilities!\n\n---\n\n## License\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE.md)\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n---\n## Social Media\n\n🚀 For the latest news, tutorials, and case studies, don't forget to follow us on:\n- [SharpAPI X (formerly Twitter)](https://x.com/SharpAPI)\n- [SharpAPI YouTube](https://www.youtube.com/@SharpAPI)\n- [SharpAPI Vimeo](https://vimeo.com/SharpAPI)\n- [SharpAPI LinkedIn](https://www.linkedin.com/products/a2z-web-ltd-sharpapicom-automate-with-aipowered-api/)\n- [SharpAPI Facebook](https://www.facebook.com/profile.php?id=61554115896974)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsharpapi%2Fphp-resume-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsharpapi%2Fphp-resume-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsharpapi%2Fphp-resume-parser/lists"}