This PR was merged into the master branch.
Discussion
----------
Tweak configuration for app.yaml
symfony/symfony-standard#1070
Commits
-------
7581f44 tweaked configuration for app.yaml
This PR was merged into the master branch.
Discussion
----------
Fixed the URL config example of Swiftmailer
Commits
-------
eaff684 Fixed the URL config example of Swiftmailer
This PR was merged into the master branch.
Discussion
----------
Added "debug" as an alias of DebugBundle
Otherwise we have the same problem as with "security" and "security-bundle": `composer req --dev debug` installs `symfony/debug` instead of `symfony/debug-bundle`
Commits
-------
a49448a Added "debug" as an alias of DebugBundle
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 PR was merged into the master branch.
Discussion
----------
Use "DefaultController" instead of "SomeController" as default
In case https://github.com/fabpot/flex/issues/27 is accepted, this should be the solution.
Commits
-------
e795fa0 Use "DefaultController" instead of "SomeController" as default
This PR was merged into the master branch.
Discussion
----------
Improve the readability of the Makefile tasks
In case https://github.com/fabpot/flex/issues/29 is accepted, this should be the solution.
Commits
-------
6785a02 Improve the readability of the Makefile tasks