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 d87d8daa36 Merge branch '2.3' into 2.4
* 2.3:
  fixed a typo
  fixed CS for lambdas
  [Yaml] fixed some license headers
  Fixes message value for objects
  Check for hour, minute & second validity
  fixed various typos
  [Filesystem] Fixed mirror for symlinks
  [Validator] Removed duplicated test for IBAN in data provider

Conflicts:
	src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php
	src/Symfony/Component/Console/Application.php
	src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php
	src/Symfony/Component/Filesystem/Tests/FilesystemTest.php
	src/Symfony/Component/HttpKernel/Tests/DependencyInjection/ContainerAwareHttpKernelTest.php
2013-12-28 09:12:03 +01:00
..
Authentication [Security] Added a missing field in SimpleAuthenticationHandler 2013-11-21 07:37:18 +01:00
Authorization Fix: duplicate usage of Symfony\Component\HttpFoundation\Response 2013-10-01 16:15:07 +02:00
EntryPoint Merge branch '2.2' into 2.3 2013-09-29 21:41:41 +02:00
Event Added doc comments 2013-09-19 18:46:04 +02:00
Firewall Merge branch '2.3' into 2.4 2013-12-26 08:59:03 +01:00
Logout Fix some annotates 2013-09-19 11:36:05 +02:00
RememberMe Merge branch '2.3' into 2.4 2013-12-28 09:12:03 +01:00
Session fixed CS 2012-07-09 14:54:20 +02:00
Tests Merge branch '2.3' into 2.4 2013-11-26 17:40:27 +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' 2013-09-29 21:43:28 +02:00
AccessMapInterface.php fixed CS 2012-07-09 14:54:20 +02:00
composer.json adjust doctrine dependencies 2013-11-07 14:20:52 +01:00
Firewall.php Merge branch '2.3' 2013-09-29 21:43:28 +02:00
FirewallMap.php Added doc comments 2013-09-19 18:46:04 +02:00
FirewallMapInterface.php [Security] fix typo 2013-09-18 17:42:47 +02:00
HttpUtils.php feature#8957 [HttpFoundation] added a way to override the Request class (fabpot) 2013-10-01 07:05:57 +02:00
LICENSE [Security] Split the component into 3 sub-components Core, ACL, HTTP 2013-09-18 09:16:41 +02:00
phpunit.xml.dist [Security] Split the component into 3 sub-components Core, ACL, HTTP 2013-09-18 09:16:41 +02:00
README.md [Security] fixed README files 2013-09-18 13:11:09 +02:00
SecurityEvents.php [Security] PHPDoc in SecurityEvents 2013-01-21 16:19:16 +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:

http://symfony.com/doc/2.4/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