An implementation of RedBean for Laravel 4. Although Redbean has a composer install option, it is not recommended. This solution also implements namespaces for Redbean.
ycms/redbean-laravel5 is a Laravel package for an implementation of redbean for laravel 4. although redbean has a composer install option, it is not recommended. this solution also implements namespaces for redbean..
It currently has 0 GitHub stars and 16 downloads on Packagist.
Install it with composer require ycms/redbean-laravel5.
Discover more Laravel packages by ycms
or browse all Laravel packages to compare alternatives.
Last updated
[Redbean PHP] (http://redbeanphp.com) is an ORM solution for PHP which is extremely easy to use, flexible in its execution, and powerful in its results.
This composer package enables RedbeanPHP for Laravel 4.
Installation is easy. In your composer.json file, add
"lj4/redbean-laravel4": "dev-master"
in your "require" section. Then, in app/config/app.php, add
'Lj4\RedbeanLaravel4\RedbeanLaravel4ServiceProvider'
in your providers array and
'R' => 'Redbean\R',
in your aliases array. That's it!
If you are wondering why this implementation has namespaces, I've converted the rb.php file to namespaced one with a few tweaks to [this file] (http://redbeanphp.com/extra/php_5_3_namespaces).