Trying to set up the DbManager for Yii2. there are lots of threads about the php version, however, not much about the DB version.
What I do know:
Step 1: migrate script
./yii migrate --migrationPath=@yii/rbac/migrations/
Step 2: configuration
...
'authManager' => [
'class' => 'yii\rbac\DbManager',
'defaultRoles' => ['admin', 'user', 'guest'],
],
...
Step 3: set up roles / rules
????