dev-master
9999999-devOrientDb Eloquent-like Driver for Laravel
MIT
The Requires
by Erdem Ăzveren
Wallogit.com
2017 © Pedro PelĂĄez
OrientDb Eloquent-like Driver for Laravel
Orientdb Eloquent-like driver for Laravel 5 using the binary protocol PhpOrient. (Not Ready For Production), (*1)
Oquent goal is lets you use OrientDB as usual Eloquent.It's on development and should not be used in production for now., (*2)
Open config/database.php
make orientdb your default connection:, (*3)
'default' => 'orientdb',
And optionally, if you want to use orientdb as a secondary connection, (*4)
'default_nosql' => 'orientdb',
Add the connection defaults:, (*5)
'connections' => [
'orientdb' => [
'driver'=> 'orientdb',
'host' => '192.168.1.5', // Host
'port' => 2424, // We Use Binary so do not change it if not necessary
'database' => 'DatabaseName',
'username' => 'root',
'password' => 'passwordforuser'
],
]
OrientDb Eloquent-like Driver for Laravel
MIT