diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2016-03-04 08:54:35 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2016-03-04 08:54:35 +0100 |
commit | db782f7171b65ce893acd354463bc3975edc0c86 (patch) | |
tree | 37776cbdbd542399c80070433d0e202f018e5789 | |
parent | 90ca01cb3197bc2c75e70442ee84847c975a7108 (diff) | |
parent | 079e3daf3cc5c02db6bf716e33b17ce013568879 (diff) | |
download | symfony-security-db782f7171b65ce893acd354463bc3975edc0c86.zip symfony-security-db782f7171b65ce893acd354463bc3975edc0c86.tar.gz symfony-security-db782f7171b65ce893acd354463bc3975edc0c86.tar.bz2 |
Merge branch '2.7' into 2.8
* 2.7:
Updated all the README files
[TwigBundle] Fix failing test on appveyor
Improved the error message when using "@" in a decorated service
Improve error reporting in router panel of web profiler
[DoctrineBridge][Form] Fix performance regression in EntityType
[FrameworkBundle] Fix a regression in handling absolute and namespaced template paths
Allow to normalize \Traversable
minor [Form] fix tests added by #16886
Remove _path from query parameters when fragment is a subrequest and request attributes are already set Added tests for _path removal in FragmentListener
Simplified everything
Added a test
Fixed the problem in an easier way
Fixed a syntax issue
Improved the error message when a template is not found
[CodingStandards] Conformed to coding standards
[TwigBundle] fixed Include file locations in "Template could not be found" exception
-rw-r--r-- | README.md | 27 |
1 files changed, 11 insertions, 16 deletions
@@ -1,23 +1,18 @@ Security Component ================== -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. +The Security component provides a complete security system for your web +application. It ships with facilities for authenticating using HTTP basic or +digest authentication, interactive form login or X.509 certificate login, but +also allows you to implement your own authentication strategies. Furthermore, +the component provides ways to authorize authenticated users based on their +roles, and it contains an advanced ACL system. Resources --------- -Documentation: - -https://symfony.com/doc/2.8/book/security.html - -Tests ------ - -You can run the unit tests with the following command: - - $ cd path/to/Symfony/Component/Security/ - $ composer install - $ phpunit + * [Documentation](https://symfony.com/doc/current/components/security/index.html) + * [Contributing](https://symfony.com/doc/current/contributing/index.html) + * [Report issues](https://github.com/symfony/symfony/issues) and + [send Pull Requests](https://github.com/symfony/symfony/pulls) + in the [main Symfony repository](https://github.com/symfony/symfony) |