gumphp / webman-duckdb
A DuckDB based Eloquent model and Query builder for webman
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/gumphp/webman-duckdb
Requires
README
安装 DuckDB PHP 扩展
https://github.com/fnvoid64/php-duckdb
配置 config/bootstrap.php
return [ // ... app\bootstrap\DuckDB::class, ];
配置 config/database.php
'duckdb' => [ 'driver' => 'duckdb', 'database' => env('DUCKDB_DATABASE', ':memory:'), 'prefix' => '', 'config' => [ 'threads' => env('DUCKDB_THREADS', 4), ], ],