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 75eebcf7dc Merge branch '4.2'
* 4.2:
  [Routing] fix trailing slash redirections involving a trailing var
  [EventDispatcher] Revers event tracing order
  [Security] Prefer clone over unserialize(serialize()) for user refreshment
  [Console] OutputFormatter: move strtolower to createStyleFromString
  Adjust tests to work in the armhf architecture. Fixes #29281.
  Vietnamese translations improvement
  [Form] Fixed FormErrorIterator class phpdoc
  Renamed test controller from Controller to TestController so it doesn't show up in the IDE autocomplete.
  Don't use he in docs when its not needed
  EventSubscriberInterface isn't a man
  Fix undefined variable in cache ArrayTrait
  fixed public directory of web server and assets install when configured in composer.json
2018-12-17 14:49:19 +01:00
..
Authentication [Security] Deprecate simple_preauth and simple_form in favor of Guard 2018-10-03 09:02:12 +02:00
Authorization [DI] minor docblock fixes 2017-10-24 13:40:19 +02:00
Controller Move SecurityUserValueResolver to security-http 2017-12-23 01:50:31 +01:00
EntryPoint Merge branch '3.4' into 4.1 2018-09-02 18:33:37 +01:00
Event Merge branch '2.8' into 3.4 2018-07-26 11:06:28 +02:00
Firewall Merge branch '4.1' into 4.2 2018-12-17 14:32:53 +01:00
Logout Merge branch '3.4' into 4.0 2018-07-26 11:08:35 +02:00
RememberMe [SecurityBundle] make remember-me cookies auto-secure + inherit their default config from framework.session.cookie_* 2018-09-18 21:47:13 +02:00
Session Merge branch '3.4' into 4.0 2018-07-26 11:08:35 +02:00
Tests Merge branch '4.1' into 4.2 2018-12-06 11:36:58 +00:00
Util [Security] getTargetPath of TargetPathTrait must return string or null 2018-12-10 05:09:19 +01:00
.gitignore
AccessMap.php Alpha-ordering for "use" statements 2018-07-26 11:03:18 +02:00
AccessMapInterface.php [DI] minor docblock fixes 2017-10-24 13:40:19 +02:00
composer.json updated version to 4.3 2018-11-26 17:19:01 +01:00
Firewall.php Merge branch '4.1' 2018-08-19 10:17:45 +02:00
FirewallMap.php Alpha-ordering for "use" statements 2018-07-26 11:03:18 +02:00
FirewallMapInterface.php [Security][SecurityBundle] FirewallMap/FirewallContext deprecations 2018-05-22 12:07:18 +02:00
HttpUtils.php Merge branch '4.1' into 4.2 2018-12-06 11:36:58 +00:00
LICENSE fixed years in copyright 2018-01-03 08:23:28 +01:00
ParameterBagUtils.php deprecate finding deep items in request parameters 2015-09-30 09:55:52 +02:00
phpunit.xml.dist Bump phpunit XSD version to 5.2 2018-11-11 12:18:13 +01:00
README.md Merge branch '3.0' 2016-03-10 12:16:56 +01:00
SecurityEvents.php Merge branch '2.8' into 3.3 2017-11-05 16:47:03 +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