shinomontaz / yii2-enlog
Enlog v1 API component Yii2
Package info
github.com/shinomontaz/yii2-enlog
Type:yii2-extension
pkg:composer/shinomontaz/yii2-enlog
dev-master
2017-10-28 23:54 UTC
This package is not auto-updated.
Last update: 2026-03-15 03:34:05 UTC
README
yii2 component for Enlog v1 API implementation
Requirements
- Yii 2 Framework
- Enlog Account
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist shinomontaz/yii2-enlog "*"
or add
"shinomontaz/yii2-enlog": "*"
to the require section of your composer.json file.
Configure
main.php:
... 'components' => [ 'enlog' => [ 'class' => 'shinomontaz\Enlog', 'url' => 'https://api.enlog.net', 'name' => 'YOUR ENLOG USER NAME', 'pass' => 'YOUR ENLOG USER PASS', 'isTest' => false ], ...