kozo / liberation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Liberation

Scrutinizer code quality (GitHub/Bitbucket) CircleCI

install

composer require kozo/liberation

usage

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

example1

// resources/sql/example.sql

select * from example
use Liberation\Liberation;

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

example2

// resources/sql/example.sql

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

About


Languages

Language:PHP 100.0%