Using the Symfony2 StreamResponse

In case you were wondering what to use the StreamedResponse for in symfony2. It’s very useful for streaming large files. Here is an example.

Symfony2 Command Testing

Symfony2 Redactor Form Type

Redactor is a very nice WYSIWYG editor. In this post I will show you how to create a redactor form type. Let’s get into the code.

Attaching Browser Information to a Symfony2 Request Object

PHP has a function to get the visitors browser information. It will return a lot of information and you can read more about it at php.net/get_browser. In this example I will show you how to set this up in your symfony2 project without the need to edit your php.ini file.

Symfony2 Continuous Integration with Jenkins, Ant, and Capistrano

At iostudio we work on many different projects. One of the ways we try to make sure that our quality of code is high is to use Jenkins to make sure all of our projects will build successfully and be able to deploy.