- 11 Apr, 2015 1 commit
-
-
Fabien Potencier authored
This PR was merged into the 2.0.x-dev branch. Discussion ---------- Update "Error Handlers" part in usage.rst Update "Error Handlers" part in usage.rst because of https://github.com/silexphp/Silex/commit/e96f9be8fda96193313bb655d63b061d6d4d7c4d#diff-9460b640f6466d5890f37f7caf262024R52 Commits ------- 46f125c4 Update "Error Handlers" part in usage.rst
-
- 27 Mar, 2015 2 commits
-
-
Fabien Potencier authored
This PR was squashed before being merged into the 2.0.x-dev branch (closes #1131). Discussion ---------- Flush spool queue for console terminate as well This allows to flush Swift messages automatically inside a Silex console application. It basically does the same as the ``EmailSenderListener`` in Symfony's SwiftMailerBundle. (see https://github.com/symfony/SwiftmailerBundle/commit/4b90392463296acc9ccf8f10649d7ac4937ae0f3). ```php use Symfony\Component\Console\Application; $app = require __DIR__.'/app.php'; $console = new Application('My Silex Application', 'n/a'); $console->setDispatcher($app['dispatcher']); // .. register commands that send emails $console->run(); ``` Commits ------- 8ecc11e6 Flush spool queue for console terminate as well
-
Dirk Luijk authored
-
- 18 Jan, 2015 1 commit
-
-
Fabien Potencier authored
This PR was merged into the 2.0.x-dev branch. Discussion ---------- Introduce KernelServiceProvider in order to remove "hacks" This introduces a new KernelServiceProvider that is auto registered by Silex\Application. The main reason for including this is to remove the ugly "dispatcher_class" hack we used to have. But since we introduced a seperate interface for listeners to use for subscribing we can just have a nice normal service. Commits ------- cc34489e Introduce KernelServiceProvider in order to "hacks"
-
- 18 Dec, 2014 1 commit
-
-
Fabien Potencier authored
This PR was merged into the 2.0.x-dev branch. Discussion ---------- Closure in $app->error() takes 3 arguments see https://github.com/silexphp/Silex/blob/master/src/Silex/ExceptionListenerWrapper.php#L53 Commits ------- c5528daa Closure in $app->error() takes 3 arguments
-
- 16 Dec, 2014 1 commit
-
- 13 Dec, 2014 18 commits
-
-
Fabien Potencier authored
* 1.2: Add option to disable memory spool Conflicts: src/Silex/Provider/SwiftmailerServiceProvider.php
-
Dave Marshall authored
Conflicts: src/Silex/Provider/SwiftmailerServiceProvider.php
-
Fabien Potencier authored
This PR was squashed before being merged into the 2.0.x-dev branch (closes #1069). Discussion ---------- Simplify composer install instructions Commits ------- 86cd9879 Simplify composer install instructions
-
Dave Marshall authored
-
Fabien Potencier authored
* 1.2: Fixed Form Provider documentation Fix: Add missing method visibility in interface excerpts Adding a default port for the connection to the database Simplify installation instructions simplified Composer instructions Conflicts: README.rst doc/providers.rst doc/usage.rst
-
Fabien Potencier authored
This PR was merged into the 1.2 branch. Discussion ---------- simplified Composer instructions Commits ------- 29076993 simplified Composer instructions
-
Fabien Potencier authored
This PR was merged into the 2.0.x-dev branch. Discussion ---------- Typo in fn name Commits ------- 5c383b24 Typo in fn name
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #1043). Discussion ---------- Fixed Form Provider documentation The Locale component is replaced by the Intl and Icu components, which are taken care of by Composer. The twig bridge also does not work without translation, as far as I tested. Commits ------- dddd0aab Fixed Form Provider documentation
-
WouterJ authored
-
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 squashed before being merged into the 2.0.x-dev branch (closes #1064). Discussion ---------- Add option to disable memory spool Thought this might do for #1054 Commits ------- 0501be91 Add option to disable memory spool
-
Dave Marshall authored
-
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 squashed before being merged into the 2.0.x-dev branch (closes #1066). Discussion ---------- Retrospectively update changelog Anyone think of anything else? I did diff 1.2..master, but it's hard to see the wood for the trees. Commits ------- 6d1128f6 Retrospectively update changelog
-
Dave Marshall authored
-
Fabien Potencier authored
This PR was merged into the 2.0.x-dev branch. Discussion ---------- Update docs to reflect provider interface changes Commits ------- db32f192 Update docs to reflect provider interface changes
-
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
-
- 04 Dec, 2014 1 commit
-
-
Rob authored
-
- 03 Dec, 2014 1 commit
-
-
Dave Marshall authored
-
- 29 Nov, 2014 1 commit
-
-
Henrik Bjornskov authored
This introduces a new KernelServiceProvider that is auto registered by Silex\Application. The main reason for including this is to remove the ugly "dispatcher_class" hack we used to have. But since we introduced a seperate interface for listeners to use for subscribing we can just have a nice normal service.
-
- 24 Nov, 2014 11 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was merged into the 2.0.x-dev branch. Discussion ---------- Fix Monolog error where newer versions does not allow an empty stream Fixes an error with Monolog, only problem is that i think i have already done this PR once before, but it have gone missing. Commits ------- 26c7d59e Fix Monolog error where newer versions does not allow an empty stream
-
Fabien Potencier authored
* 1.2: fixed tests for PHP 5.3 Conflicts: tests/Silex/Tests/CallbackServicesTest.php
-
Fabien Potencier authored
-
Fabien Potencier authored
* 1.2: fixed some tests fixed CS simplified the build matrix fixed tests for Symfony 2.6+ allowed any Symfony 2.x versions Grammar correction Conflicts: composer.json tests/Silex/Tests/Application/UrlGeneratorTraitTest.php tests/Silex/Tests/Provider/ValidatorServiceProviderTest.php
-
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
-