yii2-enlog
yii2 component for Enlog v1 API implementation, (*1)
Requirements
Installation
The preferred way to install this extension is through composer., (*2)
Either run, (*3)
php composer.phar require --prefer-dist shinomontaz/yii2-enlog "*"
or add, (*4)
"shinomontaz/yii2-enlog": "*"
to the require section of your composer.json
file., (*5)
main.php:, (*6)
...
'components' => [
'enlog' => [
'class' => 'shinomontaz\Enlog',
'url' => 'https://api.enlog.net',
'name' => 'YOUR ENLOG USER NAME',
'pass' => 'YOUR ENLOG USER PASS',
'isTest' => false
],
...