kozo/liberation

该软件包最新版本(0.1)没有可用的许可信息。

这是一个用于轻松检索和执行SQL文件等操作的Laravel软件包。

0.1 2020-12-06 08:11 UTC

This package is auto-updated.

Last update: 2024-09-06 17:54:04 UTC


README

Scrutinizer code quality (GitHub/Bitbucket) CircleCI

安装

composer require kozo/liberation

用法

Liberation::{fileType}('{fileName}')

示例1

// resources/sql/example.sql

select * from example
use Liberation\Liberation;

$sql = Liberation::sql('example');
$rows = DB::select($sql);

示例2

// resources/sql/example.sql

select * from example
$rows = DB::query()->sql('example');