{"id":26849599,"url":"https://github.com/ziming/laravel-docparser","last_synced_at":"2026-02-26T16:04:31.604Z","repository":{"id":275621077,"uuid":"926561535","full_name":"ziming/laravel-docparser","owner":"ziming","description":"Docparser OCR Package for PHP Laravel","archived":false,"fork":false,"pushed_at":"2025-02-28T15:37:47.000Z","size":26,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-04T03:34:52.401Z","etag":null,"topics":["doc-parser","docparser","document-parsing","laravel","ocr","php"],"latest_commit_sha":null,"homepage":"https://docparser.com/?ref=iavng","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/ziming.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"ziming"}},"created_at":"2025-02-03T13:30:52.000Z","updated_at":"2025-02-28T15:21:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"96f59b7d-e3d8-47c6-8561-f328c33af93e","html_url":"https://github.com/ziming/laravel-docparser","commit_stats":null,"previous_names":["ziming/laravel-docparser"],"tags_count":4,"template":false,"template_full_name":"spatie/package-skeleton-laravel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ziming%2Flaravel-docparser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ziming%2Flaravel-docparser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ziming%2Flaravel-docparser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ziming%2Flaravel-docparser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ziming","download_url":"https://codeload.github.com/ziming/laravel-docparser/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252310936,"owners_count":21727512,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["doc-parser","docparser","document-parsing","laravel","ocr","php"],"created_at":"2025-03-30T21:36:47.889Z","updated_at":"2026-02-26T16:04:26.555Z","avatar_url":"https://github.com/ziming.png","language":"PHP","readme":"# Laravel package for Docparser\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/ziming/laravel-docparser.svg?style=flat-square)](https://packagist.org/packages/ziming/laravel-docparser)\n[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/ziming/laravel-docparser/run-tests.yml?branch=main\u0026label=tests\u0026style=flat-square)](https://github.com/ziming/laravel-docparser/actions?query=workflow%3Arun-tests+branch%3Amain)\n[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/ziming/laravel-docparser/fix-php-code-style-issues.yml?branch=main\u0026label=code%20style\u0026style=flat-square)](https://github.com/ziming/laravel-docparser/actions?query=workflow%3A\"Fix+PHP+code+style+issues\"+branch%3Amain)\n[![Total Downloads](https://img.shields.io/packagist/dt/ziming/laravel-docparser.svg?style=flat-square)](https://packagist.org/packages/ziming/laravel-docparser)\n\nLaravel Package for [Docparser](https://docparser.com/?ref=iavng). A user friendly document parser SaaS.\n\n\n\n## Support us\n\nYou can support me by becoming a customer of Docparser through my referral link: \n\n[Docparser](https://docparser.com/?ref=iavng)\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require ziming/laravel-docparser\n```\n\nYou can publish the config file with:\n\n```bash\nphp artisan vendor:publish --tag=\"laravel-docparser-config\"\n```\n\nThis is the contents of the published config file:\n\n```php\nreturn [\n    'base_url' =\u003e env('DOCPARSER_BASE_URL', 'https://api.docparser.com/'),\n    'api_key' =\u003e env('DOCPARSER_API_KEY'),\n];\n```\n\n## Usage\n\n```php\n$docparser = new Ziming\\LaravelDocparser::make();\necho $docparser-\u003efetchDocumentFromUrl($parserId, $url);\n```\n\n```php\n\n// Alternatively, you can use the facade\nuse Ziming\\LaravelDocparser\\Facades\\LaravelDocparser;\nLaravelDocparser::fetchDocumentFromUrl($parserId, $url);\n```\n\nLook at the source code of `src/LaravelDocparser.php` for more methods (link below):\n\n[LaravelDocparser.php](https://github.com/ziming/laravel-docparser/blob/main/src/LaravelDocparser.php)\n\nTo learn more about what each method does in more detail, please refer to the [Docparser API documentation](https://docparser.com/api/?iavng).\n\n## Other Resources to Get Started\nTo learn more about Docparser, I recommend the following resources:\n\n- [Docparser Features](https://docparser.com/features?ref=iavng)\n- [Docparser Pricing](https://docparser.com/pricing?ref=iavng)\n- [Docparser Blog on Extracting Data from PDF](https://docparser.com/blog/extract-data-from-pdf/?ref=iavng)\n- [Docparser Blog on Zonal OCR](https://docparser.com/blog/zonal-ocr/?ref=iavng)\n\n## Testing\n\n```bash\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Security Vulnerabilities\n\nPlease review [our security policy](../../security/policy) on how to report security vulnerabilities.\n\n## Credits\n\n- [ziming](https://github.com/ziming)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","funding_links":["https://github.com/sponsors/ziming"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fziming%2Flaravel-docparser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fziming%2Flaravel-docparser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fziming%2Flaravel-docparser/lists"}