diff options
author | Javier Eguiluz <javier.eguiluz@gmail.com> | 2016-03-03 13:05:42 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2016-03-04 08:12:06 +0100 |
commit | e7f57080ddb5c75e3783f346c2c5d2f1f0dddddd (patch) | |
tree | a1660d93f3f9ca688442900b1263fb48b611a0f0 | |
parent | 9839231d5d543ec697d1f5643d14af9bca31dd00 (diff) | |
download | symfony-security-e7f57080ddb5c75e3783f346c2c5d2f1f0dddddd.zip symfony-security-e7f57080ddb5c75e3783f346c2c5d2f1f0dddddd.tar.gz symfony-security-e7f57080ddb5c75e3783f346c2c5d2f1f0dddddd.tar.bz2 |
Updated all the README files
-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.3/book/security.html - -Resources ---------- - -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) |