dev-master
9999999-devYii2 arangodb components
GPL-3.0+
The Requires
The Development Requires
by Evgeny Dubovitsky
yii2 arangodb
Yii2 arangodb components
This extension provides the ArangoDB integration for the Yii2 framework., (*1)
This extension requires ArangoDB PHP Extension, (*2)
The preferred way to install this extension is through composer., (*3)
Either run, (*4)
php composer.phar require --prefer-dist devgroup/yii2-arangodb "*"
or add, (*5)
"devgroup/yii2-arangodb": "*"
to the require section of your composer.json., (*6)
To use this extension, simply add the following code in your application configuration:, (*7)
return [ //.... 'components' => [ 'arangodb' => [ 'class' => '\devgroup\arangodb\Connection', 'connectionOptions' => [ triagens\ArangoDb\ConnectionOptions::OPTION_DATABASE => "mydatabase", triagens\ArangoDb\ConnectionOptions::OPTION_ENDPOINT => 'tcp://127.0.0.1:8529', //triagens\ArangoDb\ConnectionOptions::OPTION_AUTH_USER => '', //triagens\ArangoDb\ConnectionOptions::OPTION_AUTH_PASSWD => '', ], ], ], ];
Using the connection instance you may access databases, collections and documents., (*8)
To perform "find" queries, you should use [[\devgroup\arangodb\Query]]:, (*9)
use devgroup\arangodb\Query; $query = new Query; // compose the query $query->select(['name', 'status']) ->from('customer') ->limit(10); // execute the query $rows = $query->all();
This extension provides ActiveRecord solution similar ot the [[\yii\db\ActiveRecord]].
To declare an ActiveRecord class you need to extend [[\devgroup\arangodb\ActiveRecord]] and
implement the collectionName
and 'attributes' methods:, (*10)
use devgroup\arangodb\ActiveRecord; class Customer extends ActiveRecord { /** * @return string the name of the index associated with this ActiveRecord class. */ public static function collectionName() { return 'customer'; } /** * @return array list of attribute names. */ public function attributes() { return ['_key', 'name', 'email', 'address', 'status']; } }
Note: collection primary key name ('_key') should be always explicitly setup as an attribute., (*11)
You can use [[\yii\data\ActiveDataProvider]] with [[\devgroup\arangodb\Query]] and [[\devgroup\arangodb\ActiveQuery]]:, (*12)
use yii\data\ActiveDataProvider; use devgroup\arangodb\Query; $query = new Query; $query->from('customer')->where(['status' => 2]); $provider = new ActiveDataProvider([ 'query' => $query, 'pagination' => [ 'pageSize' => 10, ] ]); $models = $provider->getModels();
use yii\data\ActiveDataProvider; use app\models\Customer; $provider = new ActiveDataProvider([ 'query' => Customer::find(), 'pagination' => [ 'pageSize' => 10, ] ]); $models = $provider->getModels();
ArangoDB migrations are managed via [[devgroup\arangodb\console\controllers\MigrateController]], which is an analog of regular [[\yii\console\controllers\MigrateController]]., (*13)
In order to enable this command you should adjust the configuration of your console application:, (*14)
return [ // ... 'controllerMap' => [ 'arangodb-migrate' => 'devgroup\arangodb\console\controllers\MigrateController' ], ];
Below are some common usages of this command:, (*15)
# creates a new migration named 'create_user_collection' yii arangodb-migrate/create create_user_collection # applies ALL new migrations yii arangodb-migrate # reverts the last applied migration yii arangodb-migrate/down
Add ArangoDb panel to your yii\debug\Module configuration, (*16)
return [ 'bootstrap' => ['debug'], 'modules' => [ 'debug' => 'yii\debug\Module', 'panels' => [ 'arango' => [ 'class' => 'devgroup\arangodb\panels\arangodb\ArangoDbPanel', ], ], ... ], ... ];
Yii2 arangodb components
GPL-3.0+
yii2 arangodb