incodenz / yii2-session-track
Simple component that allows for tracking of sessions / logins.
Installs: 79 876
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0.0
Requires (Dev)
- phpunit/phpunit: ~4.0
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