This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Security/Guard
Nicolas Grekas ecdd681898 Merge branch '2.7' into 2.8
* 2.7:
  Fix undefined array $server
  Fix bug in windows detection
  [ProxyManager] Tmp fix composer reqs issue in ZF
  Add missing exclusions from phpunit.xml.dist
  [Serializer] ObjectNormalizer: don't serialize static methods and props
  Fix the server variables in the router_*.php files
  [Validator] Allow an empty path with a non empty fragment or a query
  The following change adds support for Armenian pluralization.
  [2.3][Process] fix Proccess run with pts enabled

Conflicts:
	composer.json
	src/Symfony/Bridge/ProxyManager/composer.json
	src/Symfony/Component/Security/phpunit.xml.dist
2015-11-18 14:45:00 +01:00
..
Authenticator fabbot 2015-09-20 20:45:52 -04:00
Firewall Write the log message on a single line againn 2015-11-03 10:13:43 +01:00
Provider checkCredentials() force it to be an affirmative yes! 2015-10-31 08:07:17 -07:00
Tests checkCredentials() force it to be an affirmative yes! 2015-10-31 08:07:17 -07:00
Token Making GuardTokenInterface extend TokenInterface 2015-09-26 14:10:49 -04:00
.gitignore Adding the necessary files so that Guard can be its own installable component 2015-09-23 21:55:58 -04:00
AbstractGuardAuthenticator.php meaningless author and license changes 2015-09-20 19:37:42 -04:00
composer.json Merge branch '2.7' into 2.8 2015-10-30 13:15:42 -07:00
GuardAuthenticatorHandler.php fabbot 2015-09-20 20:45:52 -04:00
GuardAuthenticatorInterface.php checkCredentials() force it to be an affirmative yes! 2015-10-31 08:07:17 -07:00
LICENSE Adding the necessary files so that Guard can be its own installable component 2015-09-23 21:55:58 -04:00
phpunit.xml.dist Merge branch '2.7' into 2.8 2015-11-18 14:45:00 +01:00
README.md Adding the necessary files so that Guard can be its own installable component 2015-09-23 21:55:58 -04:00

Security Component - Guard

The Guard component brings many layers of authentication together, making it much easier to create complex authentication systems where you have total control.

Resources

Documentation:

https://symfony.com/doc/2.8/book/security.html

Tests

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Security/Guard/
$ composer.phar install --dev
$ phpunit