vuba / oidc-user
Sprinkle for extending the User model.
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:userfrosting-sprinkle
Requires
- chadicus/slim-oauth2: 3.1.2
- ramsey/uuid: ^3.0
- vuba/authstack: dev-master
This package is auto-updated.
Last update: 2024-11-14 03:39:09 UTC
README
Example sprinkle for extending the User class to contain additional fields.
Installation
Edit UserFrosting app/sprinkles.json
and add the following to the require
list : "userfrosting/oidc-user": "dev-master"
. Also add oidc-user
to the base
list. For example:
{
"require": {
"vuba/oidc-user": "dev-master"
},
"base": [
"core",
"account",
"admin",
"oidc-user"
]
}
Update Composer
- Run
composer update
from the root project directory.
Run migration
- Run
php bakery bake
from the root project directory.