- 13 Dec, 2014 4 commits
-
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #1061). Discussion ---------- Fix: Add missing method visibility in interface excerpts PSR-2, that's why. Commits ------- fc9c1b7d Fix: Add missing method visibility in interface excerpts
-
Andreas Möller authored
PSR-2, that's why.
-
Fabien Potencier authored
This PR was merged into the 1.2 branch. Discussion ---------- Adding a default port for the connection to the database On HHVM an exception is thrown like what it is not a number. Commits ------- 4a1d3480 Adding a default port for the connection to the database
-
Fabien Potencier authored
This PR was merged into the 1.2 branch. Discussion ---------- Simplify installation instructions for 1.2 See #1069 Commits ------- fcb77426 Simplify installation instructions
-
- 09 Dec, 2014 1 commit
-
-
Flug authored
On HHVM an exception is thrown like what it is not a number.
-
- 06 Dec, 2014 1 commit
-
-
Dave Marshall authored
-
- 24 Nov, 2014 7 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was merged into the 1.2 branch. Discussion ---------- allowed any Symfony 2.x versions for Silex 1.2 As we know that Symfony 3.0 will be next year, let's allow any Symfony 2.x versions. I've added the 2.6 and 2.7 versions in Travis to check that everything work fine for all supported Symfony 2.x versions. Commits ------- a5dd2b55 simplified the build matrix ec53f07e fixed tests for Symfony 2.6+ 288d8911 allowed any Symfony 2.x versions
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
- 23 Nov, 2014 2 commits
-
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #1056). Discussion ---------- Grammar correction Commits ------- 29004259 Grammar correction
-
Owen Kieffer-Jones authored
-
- 12 Oct, 2014 4 commits
-
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #1033). Discussion ---------- Update RememberMeServiceProvider.php Dispatcher is not called in the remember me listener because dispatcher was not given in the constructor of the RememberMe Listener. Commits ------- 89b1287b Update RememberMeServiceProvider.php
-
Kevin authored
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #1039). Discussion ---------- Remove PHPUnit as a development dependency This will make it more inline with how Symfony uses PHPUnit and already considers this a tool installed when developing. for reference as PR that rejects having phpunit as dependency in symfony https://github.com/symfony/symfony/issues/12136 Commits ------- 62b0fa70 Remove PHPUnit as a development dependency
-
Henrik Bjørnskov authored
This will make it more inline with how Symfony uses PHPUnit and already considers this a tool installed when developing. for reference as PR that rejects having phpunit as dependency in symfony https://github.com/symfony/symfony/issues/12136
-
- 26 Sep, 2014 6 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was merged into the 1.2 branch. Discussion ---------- fixed translator Fixes #1028, #988, #983, #1023 That makes the tests pass again. Commits ------- 712375b9 fixed translator
-
Fabien Potencier authored
As of Symfony 2.5.2, Translator::__construct() calls setLocale. As the Silex Translator calls it with null and because we synchronize the translator language with the app one, the locale was always set to null when calling the translator for the first time, overriding the current app locale.
-
Fabien Potencier authored
As of Symfony 2.5.2, Translator::__construct() calls setLocale. As the Silex Translator calls it with null and because we synchronize the translator language with the app one, the locale was always set to null when calling the translator for the first time, overriding the current app locale.
-
- 22 Sep, 2014 2 commits
-
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #1021). Discussion ---------- Update testing.rst Fix dead link, @see: https://github.com/silexphp/Silex/issues/1020 Commits ------- 8c8b6a67 Update testing.rst
-
Seb Minderhoud authored
Fix dead link, @see: https://github.com/silexphp/Silex/issues/1020
-
- 21 Sep, 2014 9 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #995). Discussion ---------- Update session.rst May be a bug, but Sessions expire after 30 minutes (or less ?) To have the default behavior describe in documentation, you must set cookie_lifetime to 0 $app->register(new Silex\Provider\UrlGeneratorServiceProvider(), array( 'session.storage.options' => array( 'cookie_lifetime' => 0 ) ) ); Commits ------- 0e553e36 Update session.rst
-
dav_twix authored
May be a bug, but Sessions expire after 30 minutes (or less ?) To have the default behavior describe in documentation, you must set cookie_lifetime to 0 $app->register(new Silex\Provider\UrlGeneratorServiceProvider(), array( 'session.storage.options' => array( 'cookie_lifetime' => 0 ) ) );
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #1007). Discussion ---------- Add $app parameter for application middlewares (before, after, finish) There is small inconsistence between route and application middlewares. Route middlewares (http://silex.sensiolabs.org/doc/middlewares.html#route-middlewares) can have $app parameter, but application middlewares (http://silex.sensiolabs.org/doc/middlewares.html#application-middlewares) has this parameter missing. Commits ------- 38a3c465 Add parameter for application middlewares (before, after, finish)
-
kl3ryk authored
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was squashed before being merged into the 1.2 branch (closes #1018). Discussion ---------- allow to register form types without extensions Commits ------- 0e5f4899 allow to register form types without extensions
-
Dominik Zogg authored
-
- 08 Jul, 2014 2 commits
-
-
Fabien Potencier authored
This PR was merged into the 1.2 branch. Discussion ---------- Minor optimization in ValidatorServiceProvider `ReflectionClass` is only needed if a translator is present. Moving usage of it inside the related conditional means one less object instantiation. Commits ------- 1aed8cdf Minor optimization in ValidatorServiceProvider
-
Matthew Turland authored
ReflectionClass is only needed if a translator is present. Moving usage of it inside the related conditional means one less object instantiation.
-
- 01 Jul, 2014 2 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
-