Merge pull request #29 from kohana/3.3/bug/travis-composer-no-interaction
[kohana-auth.git] / guide / auth / driver / file.md
blob7a6fa09e0e59cb15b87a5d1b0e418dabea4d8ae5
1 # File Driver
3 The [Auth::File] driver is included with the auth module.
5 Below are additional configuration options that can be set for this driver.
7 Name | Type | Default | Description
8 -----|------|---------|-------------
9 users | `array` | array() | A user => password (_hashed_) array of all the users in your application
11 ## Forcing Login
13 [Auth_File::force_login] allows you to force a user login without a password.
15 ~~~
16 // Force the user with a username of admin to be logged into your application
17 Auth::instance()->force_login('admin');
18 $user = Auth::instance()->get_user();
19 ~~~