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/Core
Fabien Potencier c4615bfc93 Merge branch '2.4' into 2.5
* 2.4:
  [DependencyInjection] fix @return anno created by PhpDumper
  Fixed the phpdoc of the VoterInterface
  [DoctrineBridge] Fix empty parameter logging in the dbal logger
  Fixed #11675 ValueToDuplicatesTransformer accept "0" value
  check for the correct field type
  fix handling of nullable XML attributes
  [DomCrawler] fix the axes handling in a bc way

Conflicts:
	src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php
	src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php
2014-08-26 16:16:33 +02:00
..
Authentication Merge branch '2.4' 2014-04-18 22:40:13 +02:00
Authorization Merge branch '2.4' into 2.5 2014-08-26 16:16:33 +02:00
Encoder Merge branch '2.4' into 2.5 2014-08-05 11:00:40 +02:00
Event fixed CS 2011-12-18 14:36:25 +01:00
Exception Merge branch '2.3' into 2.4 2014-04-16 10:02:57 +02:00
Resources/translations [Security] copied the Resources/ directory to Core/Resources/ 2013-09-18 13:11:09 +02:00
Role Merge branch '2.4' 2014-01-24 15:36:35 +01:00
Tests [Validator] Backported constraint validator tests from 2.5 2014-08-14 16:56:25 +02:00
User minor #10717 unified return null usages (fabpot) 2014-04-18 22:35:25 +02:00
Util fixed types in phpdocs 2014-04-16 12:30:19 +02:00
Validator/Constraints Merge branch '2.4' 2014-04-23 16:08:54 +02:00
.gitignore [Security] Split the component into 3 sub-components Core, ACL, HTTP 2013-09-18 09:16:41 +02:00
AuthenticationEvents.php [Security] Add PHPDoc to AuthenticationEvents 2013-01-22 10:47:05 +01:00
composer.json Merge branch '2.4' 2013-12-26 08:59:17 +01:00
LICENSE udpated LICENSE year 2014-01-07 14:29:32 +01: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 updated version to 2.5 2013-11-24 21:17:07 +01:00
SecurityContext.php made phpdoc types consistent with those defined in Hack 2014-04-15 07:41:45 +02:00
SecurityContextInterface.php fixed types in phpdocs 2014-04-16 12:30:19 +02:00

Security Component - Core

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.5/book/security.html

Tests

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Security/Core/
$ composer.phar install --dev
$ phpunit