Parse documents to Markdown from Laravel. The client SDK for parseforartisans.com.

Maintainers

Package info

github.com/petervandijck/parse-sdk

Homepage

pkg:composer/parseforartisans/laravel

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0 2026-06-18 11:14 UTC

This package is auto-updated.

Last update: 2026-06-19 08:07:44 UTC


README

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