mirror of
https://github.com/symfony/recipes.git
synced 2026-09-12 15:46:37 +03:00
feature #9 [Proposal] Added "security" alias for the SecurityBundle (javiereguiluz)
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
This commit is contained in:
@@ -4,5 +4,6 @@
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"etc/": "%ETC_DIR%/"
|
||||
}
|
||||
},
|
||||
"aliases": ["security"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user