ybr-nx / laravel-mariadb

Add MariaDB JSON select support to Laravel
95 stars 7 forks source link

Laravel 5.7 support? #12

Open arvenom opened 5 years ago

arvenom commented 5 years ago

Can't get it to work on Laravel 5.7. Keep on getting Unsupported driver [mariadb] tried with package:discover and registering the service provider.

Vmadmax commented 5 years ago

I'm able to run it on 5.7. Do you still have problems?

kgrieco commented 5 years ago

Are you registering the service provider before configuring Eloquent during bootstrap?

// bootstrap/app.php

$app->register(MariaDBServiceProvider::class);
$app->withEloquent();