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
Nicolas Grekas b6aa47c41c Merge branch '2.8'
* 2.8: (77 commits)
  [travis] Use container-based infrastructure
  [HttpKernel] use ConfigCache::getPath() method when it exists
  [PropertyAccess] Fix setting public property on a class having a magic getter
  [Routing] Display file which contain deprecated option
  ContainerInterface: unused exception dropped
  bumped Symfony version to 2.6.8
  updated VERSION for 2.6.7
  updated CHANGELOG for 2.6.7
  bumped Symfony version to 2.3.29
  updated VERSION for 2.3.28
  update CONTRIBUTORS for 2.3.28
  updated CHANGELOG for 2.3.28
  [Debug] Fixed ClassNotFoundFatalErrorHandlerTest
  [SecurityBundle] use access decision constants in config
  [SecurityBundle] use session auth constants in config
  PhpDoc fix in AbstractRememberMeServices
  [FrameworkBundle][DX] Add option to specify additional translation loading paths
  [Filesystem] Simplified an if statement
  fixed CS
  [SecurityBundle] Use Enum Nodes Instead Of Scalar
  ...

Conflicts:
	CHANGELOG-2.3.md
	CHANGELOG-2.6.md
	src/Symfony/Bridge/Swiftmailer/composer.json
	src/Symfony/Bundle/DebugBundle/composer.json
	src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/TextDescriptor.php
	src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/full.xml
	src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/event_dispatcher_1_event1.txt
	src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/event_dispatcher_1_events.txt
	src/Symfony/Component/Debug/DebugClassLoader.php
	src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php
	src/Symfony/Component/Form/README.md
	src/Symfony/Component/Intl/README.md
	src/Symfony/Component/Locale/composer.json
	src/Symfony/Component/Routing/Loader/XmlFileLoader.php
	src/Symfony/Component/Routing/Loader/YamlFileLoader.php
	src/Symfony/Component/Security/README.md
	src/Symfony/Component/Serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php
	src/Symfony/Component/Serializer/Tests/Normalizer/ObjectNormalizerTest.php
	src/Symfony/Component/Serializer/Tests/Normalizer/PropertyNormalizerTest.php
	src/Symfony/Component/Translation/README.md
	src/Symfony/Component/Validator/README.md
	src/Symfony/Component/Yaml/Yaml.php
2015-05-12 17:48:43 +02:00
..
Authentication [DX] Attempt to improve logging messages with parameters 2015-01-16 16:11:12 +01:00
Authorization Fix: duplicate usage of Symfony\Component\HttpFoundation\Response 2013-10-01 16:15:07 +02:00
EntryPoint Merge branch '2.6' into 2.7 2015-03-12 15:31:07 +01:00
Event [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
Firewall Merge branch '2.6' into 2.7 2015-04-18 17:11:06 +02:00
Logout [SecurityBundle] decouple the logout PHP helper and Twig extension 2015-01-21 04:29:57 +01:00
RememberMe Merge branch '2.6' into 2.7 2015-05-11 04:35:29 +02:00
Session [Security] Don't destroy the session on buggy php releases. 2015-01-07 09:13:06 +01:00
Tests Merge branch '2.6' into 2.7 2015-03-30 17:55:07 +02: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 Merge branch '2.8' 2015-04-24 09:12:41 +02: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 to 2015 2015-01-01 14:13:41 +01:00
phpunit.xml.dist Merge branch '2.3' into 2.6 2015-02-24 12:52:21 +01:00
README.md updated version to 2.8 2015-04-10 10:56:33 +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:

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