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 cbd1915a2e Merge branch '3.1'
* 3.1:
  [VarDumper] Fix dumping jsons casted as arrays
  PassConfig::getMergePass is not an array
  Revert "bug #19114 [HttpKernel] Dont close the reponse stream in debug (nicolas-grekas)"
  [Serializer] Include the format in the cache key
  Fix the retrieval of the last username when using forwarding
  [Yaml] Fix PHPDoc of the Yaml class
  [HttpFoundation] Add OPTIONS and TRACE to the list of safe methods
  Update getAbsoluteUri() for query string uris

Conflicts:
	src/Symfony/Component/DependencyInjection/Compiler/PassConfig.php
	src/Symfony/Component/HttpFoundation/Tests/RequestTest.php
2016-07-17 16:08:33 +02:00
..
Authentication Merge branch '3.0' into 3.1 2016-07-17 16:02:08 +02:00
Authorization Fix: duplicate usage of Symfony\Component\HttpFoundation\Response 2013-10-01 16:15:07 +02:00
EntryPoint Merge branch '2.8' into 3.0 2015-12-15 03:03:07 +01:00
Event [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
Firewall [Security] Fix deprecated usage of DigestAuthenticationEntryPoint::getKey() in DigestAuthenticationListener 2016-07-08 11:55:21 +02:00
Logout Merge branch '2.8' into 3.0 2015-12-18 16:43:53 +01:00
RememberMe fixed CS 2016-01-21 10:55:31 +01:00
Session Remove code for PHP <5.5.9 2015-08-01 09:26:17 +02:00
Tests Merge branch '3.0' into 3.1 2016-07-10 10:05:47 +02:00
Util fixed CS 2016-03-02 13:35:00 +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 updated version to 3.2 2016-05-13 13:13:23 -05: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
ParameterBagUtils.php deprecate finding deep items in request parameters 2015-09-30 09:55:52 +02:00
phpunit.xml.dist Merge branch '2.3' into 2.7 2015-11-18 14:41:01 +01:00
README.md Merge branch '3.0' 2016-03-10 12:16:56 +01:00
SecurityEvents.php move event listener method type hint docs to @Event annotations default value. makes it easily parsable by PhpStorm plugin 2016-05-03 20:48:46 +02: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