Merge pull request #29 from kohana/3.3/bug/travis-composer-no-interaction
[kohana-auth.git] / guide / auth / index.md
blob18127e6de46de4324201ac3555885a46f0332dcf
1 # Auth
3 User authentication and authorization is provided by the auth module.
5 The auth module is included with Kohana, but needs to be enabled before you can use it. To enable, open your `application/bootstrap.php` file and modify the call to [Kohana::modules] by including the auth module like so:
7 ~~~
8 Kohana::modules(array(
9         ...
10         'auth' => MODPATH.'auth',
11         ...
12 ));
13 ~~~
15 Next, you will then need to [configure](config) the auth module.
17 The auth module provides the [Auth::File] driver for you. There is also an auth driver included with the ORM module.
19 As your application needs change you may need to find another driver or [develop](driver/develop) your own.