yii2-module / yii2-export
A module that exports data from a database
Package info
gitlab.com/yii2-module/yii2-export
Type:yii2-module
pkg:composer/yii2-module/yii2-export
Requires
Requires (Dev)
This package is auto-updated.
Last update: 2026-05-21 05:41:35 UTC
README
A module that exports data from a database.
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.pharfrom their website. - Then run the following command to install this library as dependency :
php composer.phar install yii2-module/yii2-export
Configuration
This module needs the following components to be set at the configuration level:
- 'db_export' should be a
\yii\db\Connection
If you already have a database connection, you may use the following trick :
'db_export' => 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' => [
...
'export' => [
'class' => 'Yii2Module\Yii2Export\ExportModule',
],
...
],
...
];
License
MIT (See license file)