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

dev-master 2017-10-28 23:54 UTC

This package is not auto-updated.

Last update: 2024-06-08 17:43:16 UTC


README

yii2 component for Enlog v1 API implementation

Requirements

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
	],
	...