1. 01 Feb, 2017 1 commit
  2. 09 Jan, 2017 1 commit
  3. 08 Jan, 2017 1 commit
  4. 06 Jan, 2017 2 commits
  5. 02 Jan, 2017 2 commits
  6. 06 Dec, 2016 5 commits
  7. 23 Nov, 2016 2 commits
  8. 22 Nov, 2016 3 commits
  9. 21 Nov, 2016 2 commits
  10. 06 Nov, 2016 13 commits
  11. 30 Oct, 2016 2 commits
  12. 12 Oct, 2016 1 commit
  13. 07 Oct, 2016 1 commit
  14. 06 Oct, 2016 1 commit
  15. 03 Oct, 2016 3 commits
    • Fabien Potencier's avatar
      bug #1431 Move setting $app['twig.app_variable'] after 'Symfony\Bridge\Twig' check (tiemevanveen) · 0115e23e
      Fabien Potencier authored
      This PR was merged into the 2.0.x-dev branch.
      
      Discussion
      ----------
      
      Move setting $app['twig.app_variable'] after 'Symfony\Bridge\Twig' check
      
      Currently `TwigServiceProvider ` sets `$app['twig.app_variable']` to be function that has a dependency on classes that are not required by Silex. This will fail if the user then calls that function. This happens for example when the [silex-pimple-dumper](https://github.com/Sorien/silex-pimple-dumper) maps over the app and tries to dump it's content.
      
      This PR fixes that by moving this in the `class_exists('Symfony\Bridge\Twig\Extension\RoutingExtension')` check.
      
      I've also added comment because at first it wasn't clear for me that this check for the `RoutingExtension` was the check for the whole Twig bridge. Please feel free to rebase and remove it it you don't like it or I misinterpreted it.
      
      Keep up the good work! 👍
      
      Commits
      -------
      
      b97f5a89 Move setting $app['twig.app_variable'] after 'Symfony\Bridge\Twig' check
      0115e23e
    • Tieme van Veen's avatar
    • Fabien Potencier's avatar
      minor #1430 Test/Explain monolog.exception.logger_filter (SpacePossum) · 94f4855b
      Fabien Potencier authored
      This PR was merged into the 2.0.x-dev branch.
      
      Discussion
      ----------
      
      Test/Explain monolog.exception.logger_filter
      
      This PR:
      - adds a test for the `monolog.exception.logger_filter` configuration option for the MonologServiceProvider
      - updates the description stating it is not a filter, but a mapping function from exception to error level
      
      Commits
      -------
      
      21bd1c42 Test/Explain monolog.exception.logger_filter
      94f4855b