# Installation

# Prerequisites

# Setup

To use Herodot in your Laravel project, install it using composer:

composer require matchory/herodot

Unless you've disabled package auto-discovery, Herodot should be installed and available. Otherwise, add the service provider to your config/app.php:

'providers' => [
    // ...
    Matchory\Herodot\HerodotServiceProvider::class,
],