PHPackages                             phillx/lumen-rethinkdb - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. phillx/lumen-rethinkdb

ActiveLibrary[Database &amp; ORM](/categories/database)

phillx/lumen-rethinkdb
======================

RethinkDB adapter for Lumen

3.0(9y ago)019MITPHPPHP &gt;=5.5.0

Since Dec 22Pushed 8y agoCompare

[ Source](https://github.com/phillx/lumen-rethinkdb)[ Packagist](https://packagist.org/packages/phillx/lumen-rethinkdb)[ RSS](/packages/phillx-lumen-rethinkdb/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (10)Versions (6)Used By (0)

RethinkDB for Lumen 5.6
=======================

[](#rethinkdb-for-lumen-56)

```
This package is fork of duxet/laravel-rethinkdb with fix and how-to for Lumen 5.6

```

Installation
============

[](#installation)

Requirements.
-------------

[](#requirements)

1. Rethinkdb : You need to make sure that you have installed [rethinkdb](http://www.rethinkdb.com) successfully, you can reffer to rethinkdb [documentation](https://rethinkdb.com/docs/) for the full instruction of how to install rethinkdb.
2. Lumen 5.6

Installation
------------

[](#installation-1)

Composer command to install:

`composer require "phillx/lumen-rethinkdb:dev-master"`

This will install the package and all other required packages needed to work.

Service Provider
----------------

[](#service-provider)

After you install the library you will need to register the `Service Provider` file in your `bootstrap/app.php` file like :

```
$app->register(Phillx\Rethinkdb\RethinkdbServiceProvider::class);
$app->withEloquent();

```

Database configuration
----------------------

[](#database-configuration)

Now you need to create file `config/database.php` with content like:

```
