expressodev/laravel-codeigniter-db
Composer 安装命令:
composer require expressodev/laravel-codeigniter-db
包简介
Integration layer allowing use of the Laravel database library in CodeIgniter applications
README 文档
README
This package allows you to use the excellent Laravel database library (illuminate/database) inside your CodeIgniter applications.
Laravel normally uses PDO to make database connections. CodeIgniter establishes its own connection to the database.
If you are only using the Laravel database components, then this will not be a problem - you can simply disable the CodeIgniter database connection and use Laravel's instead. However, if your application is using a mixture of CodeIgniter and Laravel database libraries, this is the package for you.
This integration layer takes all requests made to the Laravel database library, converts them to raw SQL, then passes them through to the underlying CodeIgniter database driver. This means that you will not need to establish two separate connections to the database, and it also means that CodeIgniter database profiling functions will continue to work correctly.
Usage
In your composer.json file:
{
"require": {
"expressodev/laravel-codeigniter-db": "~1.0"
}
}
In your application:
// use our mock PDO class if PDO is not enabled on this server if (!class_exists('PDO')) { class_alias('Illuminate\CodeIgniter\FakePDO', 'PDO'); } // pass all Laravel database queries through to CodeIgniter $ci = get_instance(); $resolver = new Illuminate\CodeIgniter\CodeIgniterConnectionResolver($ci); Illuminate\Database\Eloquent\Model::setConnectionResolver($resolver);
License
统计信息
- 总下载量: 4.01k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 31
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-01-29