Looking to hire Laravel developers? Try LaraJobs

laravel maintained by parseforartisans

Description
Parse documents to Markdown from Laravel. The client SDK for parseforartisans.com.
Last update
2026/06/19 10:07 (dev-main)
License
Downloads
1

Comments
comments powered by Disqus

Parse for Artisans (Laravel SDK)

Latest Version on Packagist License

Parse documents to Markdown from Laravel. Install the package, set an API key, and call Parse::file('contract.pdf')->parse(); the result arrives in a ParseCompleted event. This is the client SDK for parseforartisans.com.

Installation

composer require parseforartisans/laravel

Then set your API key and run php artisan parse:install. The installation guide covers the full setup.

Usage

use ParseForArtisans\Facades\Parse;

$parse = Parse::file('contracts/foo.pdf')->parse();   // returns a handle immediately

The result arrives asynchronously in a ParseCompleted event:

public function handle(ParseCompleted $event): void
{
    $markdown = $event->request->markdown();
}

Options, configuration, delivery modes, and storage modes are all covered in the docs: parseforartisans.com/docs.

Requirements

  • PHP ^8.3
  • Laravel 12 or 13

License

MIT