- 26 Oct, 2013 2 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was merged into the master branch. Discussion ---------- fixed order of route registration for mounted controllers simpler alternative for #736 in order to fix #716 Commits ------- 4e6031e2 fixed order of route registration for mounted controllers
-
- 19 Oct, 2013 1 commit
-
-
Fabien Potencier authored
-
- 16 Oct, 2013 4 commits
-
-
Fabien Potencier authored
This PR was merged into the master branch. Discussion ---------- Fix changelog entry Commits ------- 885870e6 Fix changelog entry
-
Romain Neutron authored
-
Fabien Potencier authored
This PR was squashed before being merged into the master branch (closes #800). Discussion ---------- Converters as service This PR decouples the callback resolution service from `ServiceControllerResolver` in `CallbackResolver` so it can be used to resolve converter callback declared a service callbacks : ```php $app->get('/user/{user}', function (User $user) { // ... })->convert('user', 'service:method'); ``` Commits ------- 0cdef8e5 Converters as service
-
Romain Neutron authored
-
- 14 Oct, 2013 1 commit
-
-
Fabien Potencier authored
This PR was merged into the master branch. Discussion ---------- changed the default controller to be unique for the whole app Commits ------- 9c68da8d changed the default controller to be unique for the whole app
-
- 13 Oct, 2013 1 commit
-
-
Fabien Potencier authored
-
- 12 Oct, 2013 4 commits
-
-
Fabien Potencier authored
This PR was merged into the master branch. Discussion ---------- added a way to delay the attachment of a controller to a route There are several ideas behind this PR. It's mostly about consistency by being able to decouple the setting of a controller from the match call. The old way still works of course. It is more consistent as everything can now be done via method calls and the fact that the controller is the second argument makes things uglier, especially when the code in the controller is large. As an added bonus, it helps when indenting the code (currently, I always wonder how to indent my code as it's not obvious). Last, but not the least, being able to put the code last also makes things more readable. Current: ``` $app->get('/foo', function ($id) { // ... }) ->bind('home') ->assert('id', '\d+') ; ``` Now: ``` $app ->get('/foo') ->bind('home') ->assert('id', '\d+') ->run(function ($id) { // ... }) ; ``` Commits ------- 8fbb9369 added a way to delay the attachment of a controller to a route
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
- 11 Oct, 2013 12 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was merged into the master branch. Discussion ---------- added support for the Symfony HttpKernel fragment sub-framework Closes #783 and #802 Todo: - [x] add some tests Commits ------- dcbab7f6 added support for the Symfony HttpKernel fragment sub-framework
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was merged into the master branch. Discussion ---------- Minor - Adding session dependency caution message Commits ------- 4eab2bd3 Update security.rst c0a54314 Minor - Adding session dependency caution message
-
Fabien Potencier authored
feature #772 Added "security.hide_user_not_found" support in SecurityServiceProvider (tomaszsobczak) This PR was squashed before being merged into the master branch (closes #772). Discussion ---------- Added "security.hide_user_not_found" support in SecurityServiceProvider Added "security.hide_user_not_found" support in SecurityServiceProvider to make configuration similar with Symfony2 framework. Commits ------- 9c614f5a Added "security.hide_user_not_found" support in SecurityServiceProvider
-
tomaszsobczak authored
-
Fabien Potencier authored
This PR was merged into the master branch. Discussion ---------- Add a link to github "How to create a pull request" article Commits ------- 6a0da1e3 Add a link to github "How to create a pull request" article
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was merged into the master branch. Discussion ---------- Update instructions to use ~1.1 instead of ~1.0 Please also update http://silex.sensiolabs.org/download which is not only forgotten every time because it's not part of the repo, it's also outdated *right now*... Commits ------- 9685e904 use tilde operator for pimple require 69c545c6 Update constraints from ~1.0 to ~1.1
-
Fabien Potencier authored
-
Fabien Potencier authored
-
- 09 Oct, 2013 2 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
-
- 07 Oct, 2013 1 commit
-
-
Nicolas Bastien authored
-
- 01 Oct, 2013 3 commits
-
-
Fabien Potencier authored
This PR was merged into the master branch. Discussion ---------- Updating translation file path Commits ------- 3f981d56 Updating translation file path
-
Julio Montoya authored
-
Julio Montoya authored
-
- 27 Sep, 2013 2 commits
-
-
Fabien Potencier authored
This PR was merged into the master branch. Discussion ---------- Update multiple_loggers.rst typo Commits ------- e855c2a2 Update multiple_loggers.rst
-
Χάρης Υφαντής authored
typo
-
- 23 Sep, 2013 2 commits
-
-
Fabien Potencier authored
This PR was merged into the master branch. Discussion ---------- Change deprecated functions and remove unused imports I changed the deprecated translation function setFallbackLocale() and the debug Exception- and Error-Handler. Therefore i added symfony/debug to composer.json. I also removed unused imports and fixed some classnames in docblock comments. Commits ------- d214e2e0 Test for TranslationServiceProvider 67c7e3fe Handle locale_fallback 380792b9 Also update doc for translation changes 60baeadc Remove unused imports and fix docblock for exceptions 69756f95 Use new debug component 92d4f0f1 Remove usage of deprecated function setFallbackLocale
-
Fabien Potencier authored
This PR was merged into the master branch. Discussion ---------- Bad doc link : correction of the link to the documentation The link to the doc was wrong (404), fixed. Commits ------- 8898de0e Bad doc link : correction of the link to the documentation
-
- 20 Sep, 2013 1 commit
-
-
Daniel Tschinder authored
-
- 16 Sep, 2013 4 commits
-
-
Daniel Tschinder authored
-
Daniel Tschinder authored
-
Daniel Tschinder authored
-
Daniel Tschinder authored
-