These docs are for v0.1.4-alpha. Click to read the latest docs for v1.0.0-dev.

Installation

1. Install through Composer, obviously:

composer require mascame/artificer

2. Add the Service Provider to app/config.php at the bottom of 'providers':

<?php

...
Mascame\Artificer\ArtificerServiceProvider::class,
...

3. Publish migrations and config:

php artisan vendor:publish --provider="Mascame\Artificer\ArtificerServiceProvider"

# For only **config** add: --tag="config"
# For only **migrations** add: --tag="migrations"