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 cb9f8342c4 Merge branch '2.7'
* 2.7:
  [2.6] Test lowest versions of dependencies
  Test lowest versions of dependencies
  Fix placeholder date format
  Test components using their lowest possible deps
2014-12-16 21:28:59 +01:00
..
Authentication [2.6] CS Fixes And Removed An Unused Import 2014-12-07 19:23:39 +01:00
Authorization Fix: duplicate usage of Symfony\Component\HttpFoundation\Response 2013-10-01 16:15:07 +02:00
EntryPoint made phpdoc types consistent with those defined in Hack 2014-04-15 07:41:45 +02:00
Event Added doc comments 2013-09-19 18:46:04 +02:00
Firewall Merge branch '2.5' into 2.6 2014-12-05 13:00:15 +01:00
Logout made {@inheritdoc} annotations consistent across the board 2014-04-16 09:04:20 +02:00
RememberMe Merge branch '2.3' into 2.5 2014-12-02 21:15:53 +01:00
Session Remove aligned '=>' and '=' 2014-10-26 08:30:58 +01:00
Tests [2.6] CS Fixes And Removed An Unused Import 2014-12-07 19:23:39 +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 Merge branch '2.7' 2014-12-16 21:28:59 +01: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 udpated LICENSE year 2014-01-07 14:29:32 +01:00
phpunit.xml.dist [PHPUnit] ignore E_USER_DEPRECATED notices 2014-11-29 16:15:10 +01:00
README.md updated version to 3.0 2014-11-11 09:37:22 +01: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