laravel-database maintained by webman-tech
Last update
2025/10/31 06:53
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/10/31 06:53
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/10/31 06:53
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/10/31 06:53
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/10/31 06:53
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/10/31 06:53
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/10/10 10:16
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/06/04 05:04
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/06/04 05:04
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/06/04 05:04
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/06/04 05:04
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/06/04 05:04
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/06/04 05:04
License
Require
- php ^8.2
- illuminate/database ^12.0
- illuminate/pagination ^12.0
- illuminate/events ^12.0
- webman/database ^2.1
Last update
2025/02/07 09:41
License
Require
- php ^8.2
- illuminate/database ^11.0
- illuminate/pagination ^11.0
- illuminate/events ^11.0
- webman/database ^2.1
Last update
2025/02/07 09:41
License
Require
- php ^8.2
- illuminate/database ^11.0
- illuminate/pagination ^11.0
- illuminate/events ^11.0
- webman/database ^2.1
Last update
2025/02/07 09:41
License
Require
- php ^8.2
- illuminate/database ^11.0
- illuminate/pagination ^11.0
- illuminate/events ^11.0
- webman/database ^2.1
webman-tech/laravel-database
Split from webman-tech/laravel-monorepo
适用于 webman 的 Laravel 数据库组件,基于 illuminate/database 实现。
安装
composer require webman-tech/laravel-database
简介
该组件将 Laravel 强大的数据库功能引入 webman 框架中,提供了完整的数据库查询构建器和 Eloquent ORM。
所有方法和配置与 Laravel 几乎一致,因此使用方式可完全参考 Laravel Database 文档。
特殊使用说明
1. Facades 使用方式
使用 WebmanTech\LaravelDatabase\Facades\DB 提供更完整的代码提示:
use WebmanTech\LaravelDatabase\Facades\DB;
DB::table('users')->get();
2. Larastan 静态分析支持
在 phpstan.neon 或 phpstan.neon.dist 中添加:
includes:
- vendor/webman-tech/laravel-monorepo/src/LaravelDatabase/Larastan/extension.neon
运行分析:
./vendor/bin/phpstan analyse