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/Http
Fabien Potencier da655a9368 Merge branch '2.3' into 2.7
* 2.3:
  Typo fix
  [2.3] Static Code Analysis for Components
  Added support \IteratorAggregate for UniqueEntityValidator
  Fix #17306 Paths with % in it are note allowed (like urlencoded)
  Added sort order SORT_STRING for params in UriSigner
  Remove normalizer cache in Serializer class
2016-01-12 18:44:11 +01:00
..
Authentication fixes CS 2015-08-24 09:13:45 +02:00
Authorization Fix: duplicate usage of Symfony\Component\HttpFoundation\Response 2013-10-01 16:15:07 +02:00
EntryPoint Merge branch '2.3' into 2.7 2015-12-15 02:31:17 +01:00
Event [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
Firewall Merge branch '2.3' into 2.7 2016-01-12 18:44:11 +01:00
Logout Fix the logout path when not using the router 2015-12-17 14:04:43 +01:00
RememberMe minor #16697 CS: remove impossible default argument value (keradus) 2015-11-28 11:22:51 +01:00
Session Added a small Upgrade note regarding security.context 2015-06-15 08:46:44 +02:00
Tests Merge branch '2.3' into 2.7 2015-11-23 11:34:14 +01:00
.gitignore [Security] Split the component into 3 sub-components Core, ACL, HTTP 2013-09-18 09:16:41 +02:00
AccessMap.php Merge branch '2.3' into 2.4 2014-04-16 10:02:57 +02:00
AccessMapInterface.php fixed CS 2012-07-09 14:54:20 +02:00
composer.json added the new Composer exclude-from-classmap option 2015-10-30 13:13:17 -07:00
Firewall.php Merge branch '2.3' into 2.4 2014-04-16 10:02:57 +02:00
FirewallMap.php made {@inheritdoc} annotations consistent across the board 2014-04-16 09:04:20 +02:00
FirewallMapInterface.php [Security] fix typo 2013-09-18 17:42:47 +02:00
HttpUtils.php Merge branch '2.3' into 2.5 2014-12-04 09:55:19 +01:00
LICENSE updated copyright year 2016-01-03 16:33:06 +01:00
phpunit.xml.dist Merge branch '2.3' into 2.7 2015-11-18 14:41:01 +01:00
README.md Merge branch '2.6' into 2.7 2015-05-13 13:34:46 +02:00
SecurityEvents.php Add machine readable events 2014-11-16 18:21:02 +01:00

Security Component - HTTP Integration

Security provides an infrastructure for sophisticated authorization systems, which makes it possible to easily separate the actual authorization logic from so called user providers that hold the users credentials. It is inspired by the Java Spring framework.

Resources

Documentation:

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

Tests

You can run the unit tests with the following command:

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