amos/statistics
Statistics
1.0.0
2018-07-23 16:19 UTC
Requires
- php:>=5.4.0
- elitedivision/amos-admin:~2.0
- elitedivision/amos-core:~1.9.44
- moonlandsoft/yii2-phpexcel:*
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Plugin for statistics.
Installation
1. The preferred way to install this extension is through composer.
Either run
composer require amos/statistics
or add this row
"amos/statistics": "dev-master"
to the require section of your composer.json
file.
2. Apply migrations
php yii migrate/up --migrationPath=@vendor/amos/statistics/src/migrations
or add this row to your migrations config in console:
<?php
return [
'@vendor/amos/statistics/src/migrations',
];
3. Backend configuration
To enable the plugin in backend add this configuration in backend/config/modules-amos.php file or in your main-local.php file.
<?php
'modules' => [
'statistics' => [
'class' => 'amos\statistics\Module',
],
],