Add provider \Pckg\Auth\Provider\Auth::class
to your App provider.
Add migration \Pckg\Auth\Migration\CreateAuthTables::class
to your migrations.php
config.
Migrate $ php console yourApp migrator:install --repository=default --clean
Create godfather $ php console auth auth:create-godfather [email protected]
Add provider to your config 'default' => [ 'type' => \Pckg\Auth\Service\Provider\Database::class, 'entity' => \OpenCode\OAuth2\Entity\Users::class, ],