1. 29 Jan, 2014 2 commits
  2. 21 Jan, 2014 3 commits
  3. 20 Jan, 2014 8 commits
  4. 19 Jan, 2014 2 commits
  5. 08 Jan, 2014 4 commits
  6. 31 Dec, 2013 2 commits
  7. 27 Dec, 2013 7 commits
  8. 06 Dec, 2013 2 commits
    • Fabien Potencier's avatar
      feature #880 Allow changing of ResolvedFormTypeFactory (Danez) · 8c157d15
      Fabien Potencier authored
      This PR was merged into the master branch.
      
      Discussion
      ----------
      
      Allow changing of ResolvedFormTypeFactory
      
      Added a new service for the ResolvedTypeFactory. The service name is based on the symfony service name.
      
      This is needed to get the debug form panel working in silex. (PR for this follows soon in web-profiler-provider)
      
      Commits
      -------
      
      6309b930 Allow changing of ResolvedFormTypeFactory
      8c157d15
    • Daniel Tschinder's avatar
      Allow changing of ResolvedFormTypeFactory · 6309b930
      Daniel Tschinder authored
      Added a new service for the ResolvedTypeFactory. The service name is based on the symfony service name.
      6309b930
  9. 03 Dec, 2013 4 commits
    • Fabien Potencier's avatar
      Merge branch '1.1' · 7b546347
      Fabien Potencier authored
      * 1.1:
        Remove gendered pronouns
      7b546347
    • Fabien Potencier's avatar
      Merge branch '1.0' into 1.1 · 5633f1b6
      Fabien Potencier authored
      * 1.0:
        Remove gendered pronouns
      5633f1b6
    • Fabien Potencier's avatar
      minor #879 Remove gendered pronouns (epochblue) · 53b9381b
      Fabien Potencier authored
      This PR was merged into the 1.0 branch.
      
      Discussion
      ----------
      
      Remove gendered pronouns
      
      When referencing hypothetical users, it's more inclusive to use
      gender-neutral prnouns. Instances of he/she/his/her/him have been
      replaced with they/them/their and verb tenses changed to match.
      
      Commits
      -------
      
      c48da4ca Remove gendered pronouns
      53b9381b
    • Bill Israel's avatar
      Remove gendered pronouns · c48da4ca
      Bill Israel authored
      When referencing hypothetical users, it's more inclusive to use
      gender-neutral prnouns. Instances of he/she/his/her/him have been
      replaced with they/them/their and verb tenses changed to match.
      c48da4ca
  10. 22 Nov, 2013 1 commit
  11. 15 Nov, 2013 1 commit
  12. 11 Nov, 2013 4 commits
    • Fabien Potencier's avatar
      minor #868 moved README to rst (fabpot) · 71661809
      Fabien Potencier authored
      This PR was merged into the master branch.
      
      Discussion
      ----------
      
      moved README to rst
      
      Commits
      -------
      
      cb303871 moved README to rst
      71661809
    • Fabien Potencier's avatar
      moved README to rst · cb303871
      Fabien Potencier authored
      cb303871
    • Fabien Potencier's avatar
      feature #864 allowed any callback to be a method call on a service (a:b notation) (fabpot) · 282628dc
      Fabien Potencier authored
      This PR was merged into the master branch.
      
      Discussion
      ----------
      
      allowed any callback to be a method call on a service (a:b notation)
      
      #800 added the possibility to use a service method (with the `a:b` notation) for converters. This PR goes one step further by allowing almost all methods accepting a callback to use a service method.
      
      The following is now possible:
      
      ```php
      $app->before('service:beforeApp');
      $app->after('service:afterApp');
      $app->finish('service:finishApp');
      $app->error('service:error');
      $app->on('kernel.request', 'service:onRequest');
      
      $app
          ->match('/', 'service:controller')
          ->convert('foo', 'service:convert')
          ->before('service:before')
          ->after('service:after')
      ;
      ```
      
      Commits
      -------
      
      87f5e203 allowed any callback to be a method call on a service (a:b notation)
      282628dc
    • Fabien Potencier's avatar
      fixed URL · 2daa7505
      Fabien Potencier authored
      2daa7505