Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions components/security.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@ The Security Component
Installation
------------

.. code-block:: terminal

$ composer require symfony/security

.. include:: /components/require_autoload.rst.inc

The Security component is divided into several smaller sub-components which can
be used separately:

Expand All @@ -38,6 +32,17 @@ be used separately:
It brings many layers of authentication together, allowing the creation
of complex authentication systems.

You can install each of them separately in your project:

.. code-block:: terminal

$ composer require symfony/security-core
$ composer require symfony/security-http
$ composer require symfony/security-csrf
$ composer require symfony/security-guard

.. include:: /components/require_autoload.rst.inc

.. seealso::

This article explains how to use the Security features as an independent
Expand Down