This PR was merged into the master branch.
Discussion
----------
Fix `make serve` with web-server-bundle
| Q | A
| ------------- | ---
| License | MIT
When renaming the directory structure, this was forgotten.
Commits
-------
761095a Fix `make serve` with web-server-bundle
This PR was squashed before being merged into the master branch (closes#106).
Discussion
----------
Move etc/ to config/ and web/ to public/
| Q | A
| ------------- | ---
| License | MIT
Must be merged just after symfony/flex#122
Commits
-------
0cf07ad fixed some file names
bf2148f moved etc/ to config/ and web/ to public/
This PR was merged into the master branch.
Discussion
----------
Support alternative bin dirs for the security checker
| Q | A
| ------------- | ---
| License | MIT
The auto-scripts entry now relies on the fact that Composer adds the bin-dir in the PATH instead of asking the Flex plugin to run a php-script.
Fixes https://github.com/symfony/flex/issues/109
Commits
-------
ac72605 Support alternative bin dirs for the security checker
This PR was merged into the master branch.
Discussion
----------
[symfony] Correct versions for symfony/orm-pack and symfony/profiler-pack
| Q | A
| ------------- | ---
| License | MIT
Also added aliases `doctrine-orm` and `doctrine` for `symfony/orm-pack` to better address symfony/flex#28 and symfony/recipes#24.
Commits
-------
38f8251 [symfony] Correct versions for symfony/orm-pack and symfony/profiler-pack
This PR was merged into the master branch.
Discussion
----------
[lexik/jwt-authentication-bundle] Fix generate-jwt-keys target in Makefile
| Q | A |
| --- | --- |
| License | MIT |
The definition of the `generate-jwt-keys` target broke the `Makefile` when the `openssl` binary is not available.
Commits
-------
651c84f [lexik/jwt-authentication-bundle] Fix generate-jwt-keys target in Makefile
This PR was merged into the master branch.
Discussion
----------
Add the profiler pack
fixedsymfony/flex#90
License MIT
Commits
-------
5824ee7 added the profiler pack
This PR was squashed before being merged into the master branch (closes#76).
Discussion
----------
[Doc] Add missing doc about the "container" configurator
| Q | A
| ------------- | ---
| License | MIT
Was missing, not sure it was by purpose or not, but I propose to add it anyway, feel free to close it if you think it's not relevant.
Just about the bottom-note I added, it's because of [this "fixme" comment](https://github.com/symfony/flex/blob/master/src/Configurator/ContainerConfigurator.php#L27-L30), I'm not sure this warning should be present in the docs or if we shouldn't tell about it as the "fixme" might be solved one day 🤔
Commits
-------
c101117 [Doc] Add missing doc about the "container" configurator
This PR was squashed before being merged into the master branch (closes#75).
Discussion
----------
[Translation] Allow using "etc/translations" to store translations files
| Q | A
| ------------- | ---
| License | MIT
For now, translations are stored in Symfony's default directory which is `%kernel.root_dir%/Resources/translations`, resolved to `src/Resources/translations`.
I find it much more convenient to store it in `etc/translations`.
I'm not sure about some things though:
* The yaml file name, `translation.yaml`, as this config is part of the framework and we cannot "update" the `framework.yaml` file with this recipe 😕 Maybe should I rename it `symfony_translation.yaml` or `translator`, or even maybe `symfony_translator`?
* Adding `%locale%` parameter with `en` by default. As it's not mandatory to have a `%locale%` parameter in Symfony apps anymore, I thought it would be useful to setup at least this value and add a comment to tell the user to update it depending on his/her application.
What do you think?
Commits
-------
b3dc37b [Translation] Allow using "etc/translations" to store translations files