shinomontaz / yii2-enlog
Enlog v1 API component Yii2
Installs: 71
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
This package is not auto-updated.
Last update: 2025-02-01 21:03:44 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 ], ...