incodenz/yii2-session-track

Simple component that allows for tracking of sessions / logins.

Installs: 70 049

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 1

Open Issues: 0

Type:yii2-extension

0.0.10 2019-07-04 04:40 UTC

This package is auto-updated.

Last update: 2024-05-04 15:42:18 UTC


README

Simple component that allows for tracking of sessions / logins.

Provides a configurable list of exceptions.

Installation

The preferred way to install this extension is through composer.

Add the following to your composer.json file.

    "require" : {
        "incodenz/yii2-session-track": "*"
    },

Configuration Examples

Basic Configuration

...
'bootstrap' => [
    'sessionTrack',
]
'components' => [
    'sessionTrack' => [
        'class' => 'incodenz\SessionTrack\Component',
    ]
],
...

Run the migrations

cp vendor/incodenz/yii2-session-track/src/migrations/* migrations/
php yii migrate