pckg/auth

Provides basic functionality for authentication and authorization users in database, on Twitter, Facebook and with OAuth2 standard

Installs: 5 143

Dependents: 9

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/pckg/auth

dev-next-8.0 2022-12-09 19:32 UTC

This package is auto-updated.

Last update: 2025-10-15 22:32:26 UTC


README

Codacy Badge

Build status

Install

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 your@email.com

Add provider to your config 'default' => [ 'type' => \Pckg\Auth\Service\Provider\Database::class, 'entity' => \OpenCode\OAuth2\Entity\Users::class, ],