mirror of
https://github.com/symfony/recipes.git
synced 2026-09-12 07:36:30 +03:00
This PR was merged into the master branch.
Discussion
----------
[Proposal] Added "security" alias for the SecurityBundle
The "security" alias installed the core Security component for me:
```
$ composer req security
Using version ^3.3@dev for symfony/security
- Removing symfony/security-core (dev-master 2cb0385)
- Installing symfony/inflector (dev-master 3b19c08)
- Installing symfony/property-access (dev-master 65b1197)
- Removing symfony/security-csrf (dev-master 46ad802)
- Installing symfony/security (dev-master a382b7c)
```
So I needed to execute this too:
```
$ composer req security-bundle
Using version ^3.3@dev for symfony/security-bundle
- Installing symfony/security-bundle (dev-master acbf390)
```
... but given that "Security" is one of those components which are hard to use stand-alone outside the Symfony Framework, maybe most people expect "security" to install the SecurityBundle?
Commits
-------
ab2124d Added "security" alias for the SecurityBundle