diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2016-03-04 08:56:56 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2016-03-04 08:56:56 +0100 |
commit | b09b5fd4192256b37ad3782bb1e6754961ea06e1 (patch) | |
tree | 2caa04f41f69ca8558e5257ce04ef1ab03a3a60b | |
parent | 769a127dbff066c009f1cab08c2b6921108f87f1 (diff) | |
parent | fc720310dfb0035eb36ebc36626009eaf3d9acb2 (diff) | |
download | symfony-security-b09b5fd4192256b37ad3782bb1e6754961ea06e1.zip symfony-security-b09b5fd4192256b37ad3782bb1e6754961ea06e1.tar.gz symfony-security-b09b5fd4192256b37ad3782bb1e6754961ea06e1.tar.bz2 |
Merge branch '3.0'
* 3.0:
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/3.1/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) |