turso/libsql-laravel is a Laravel package.
It currently has 50 GitHub stars and 2.709 downloads on Packagist (latest version v0.2.0).
Install it with composer require turso/libsql-laravel.
Discover more Laravel packages by turso
or browse all Laravel packages to compare alternatives.
Last updated
Databases for all Laravel Apps.
Turso · Docs · Quickstart · Blog & Tutorials
[!WARNING] This SDK is currently in technical preview. Join us in Discord to report any issues.
composer require turso/libsql-laravel
Inside your Laravel application’s config/database.php, configure the default and libsql connections:
<?php
use Illuminate\Support\Str;
return [
"default" => env("DB_CONNECTION", "libsql"),
"connections" => [
"libsql" => [
"driver" => env("DB_CONNECTION", "libsql"),
"database" => database_path("dev.db"),
],
// ...
],
];
Visit our official documentation.
Join us on Discord to get help using this SDK. Report security issues via email.
See the contributing guide to learn how to get involved.