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.
- Host: GitHub
- URL: https://github.com/thecodingmachine/security.userservice
- Owner: thecodingmachine
- License: mit
- Created: 2012-09-09T09:37:11.000Z (almost 14 years ago)
- Default Branch: 3.0
- Last Pushed: 2022-12-06T15:17:37.000Z (over 3 years ago)
- Last Synced: 2025-04-11T14:19:50.005Z (about 1 year ago)
- Language: PHP
- Size: 451 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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)