yii2-module/yii2-merge

A module to merge informations from different modules that gathers the same data

Installs: 239

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

Type:yii2-module


README

A module to merge informations from different modules that gathers the same data.

coverage build status

Installation

The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.

  • Download composer.phar from their website.
  • Then run the following command to install this library as dependency :
  • php composer.phar install yii2-magic/yii2-merge": "^5"

Configuration

This module needs the following components to be set at the configuration level:

  • 'db_merge' should be a \yii\db\Connection

If you already have a database connection, you may use the following trick :

'db_merge' => function() { return \Yii::$app->get('db'); },

where 'db' is the id of your database connection.

This module uses the following parameters to be set at the configuration level:

  • NONE

Then the module should be configured as follows (in console.php or web.php) :

$config = [
	...
	'modules' => [
		...
		'merge' => [
			'class' => 'Yii2Module\Yii2Merge\MergeModule',
		],
		...
	],
	...
];

License

MIT (See license file)