An open API service indexing awesome lists of open source software.

https://github.com/thecodingmachine/security.userservice

A set of PHP class to manage log-in and log-out of web applications and that integrates with Mouf.
https://github.com/thecodingmachine/security.userservice

Last synced: about 1 year ago
JSON representation

A set of PHP class to manage log-in and log-out of web applications and that integrates with Mouf.

Awesome Lists containing this project

README

          

UserService: Managing users with Mouf
=====================================

This package is part of the [Mouf PHP framework](http://mouf-php.com) and contains objects and interfaces to manage users' authentication.

It allows you to manage logged users. UserService does authentication, not authorization. If you want to manage
users rights, have a look at the [Right Service](http://mouf-php.com/packages/mouf/security.rightsservice/README.md).

Simply put, UserService:

- manages the user's session for you
- allows you to login / logout (`login()` and `logoff()` methods)
- knowns if the current user is logged or not (`isLogged()`)
- allows you to retrieve the current logged user (`getLoggedUser()`)



> Install UserService: [Installation](doc/usersserviceInstallation.md)