blob: 60a4bcd66a713c126a69d55af3a696fc041fa6bd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# User Extension Sprinkle (UserFrosting 4.1)
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/extend-user": "~4.1.1"`. Also add `extend-user` to the `base` list. For example:
```
{
"require": {
"userfrosting/extend-user": "~4.1.1"
},
"base": [
"core",
"account",
"admin",
"extend-user"
]
}
```
### Update Composer
- Run `composer update` from the root project directory.
### Run migration
- Run `php bakery bake` from the root project directory.
|