Skip to content

Instantly share code, notes, and snippets.

@javiereguiluz
javiereguiluz / gist:1293646
Created October 17, 2011 20:10
Configuración mínima de Apache2 para un proyecto Symfony2
<VirtualHost *:80>
DocumentRoot "/Users/javier/sf/cupon.local/web"
DirectoryIndex app.php
ServerName cupon.local
<Directory "/Users/javier/sf/cupon.local/web">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
@javiereguiluz
javiereguiluz / WallpaperNotifier.php
Created April 17, 2012 09:15
The winner proposal of the Sismo Challenge programming contest
<?php
namespace Sismo\Contrib;
use Sismo\Notifier\Notifier;
use Sismo\Commit;
/**
* Notifies builds via the wallpaper (Mac only).
*
@javiereguiluz
javiereguiluz / gist:a66f084a4f2cf11cf0ee
Last active August 27, 2016 17:47
Discussion about the different solutions to display a flash message

The problem to solve

We want to show a flash message as the result of executing some controller. This message will only last for the next request.

Proposed Solution #1

I propose to use the new addFlash() method available in the base controller of Symfony 2.6:

@javiereguiluz
javiereguiluz / gist:a5514ec6cde2a63be441
Last active May 3, 2017 18:21
How to add a deprecation note about Symfony features

In order to generate and log a warning message about a deprecated Symfony feature, use the trigger_error() function as follows:

trigger_error('The enctype method of the form helper was removed. You should use the new method start instead.', E_USER_DEPRECATED);

Please, be as explicit as possible in the deprecation message and always explain the alternative way to use that feature, property, method or class.

@javiereguiluz
javiereguiluz / har2blackfire.php
Last active August 29, 2015 14:14
Transforms HAR file format to Blackfire file format
<?php
// Transforms a HAR (HTTP Archive) file into a BK file to analyze it using
// Blackfire Profiler (https://blackfire.io/)
//
// USAGE:
// $ php har2blackfire.php name-of-the-HAR-file.har
$harFile = $argv[1];
$harData = json_decode(file_get_contents($harFile), true);
@javiereguiluz
javiereguiluz / gist:ec86ff09c05eabac492d
Last active August 29, 2015 14:17
Symfony en 1 minuto

Linux y Mac OS X

# (30 segundos) Instalar el Instalador de Symfony
$ sudo curl -LsS http://symfony.com/installer -o /usr/local/bin/symfony
$ sudo chmod a+x /usr/local/bin/symfony

# (10 segundos) Crear un nuevo proyecto Symfony
$ symfony new nombre_proyecto
// original code
public function getFunctions()
{
return array(
new \Twig_SimpleFunction('show_source_code', array($this, 'showSourceCode'), array('is_safe' => array('html'), 'needs_environment' => true)),
);
}
// new code
<?php
// app/config/routing.php
use Symfony\Component\Routing\RouteCollection;
use Symfony\Component\Routing\Route;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
$collection = new RouteCollection();
$collection->add('closure_controller', new Route('/closure', [
'_controller' => function (Request $request) {
```css
body {
background-color: #F9F9F9;
color: #222;
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.4;
padding: 0;
margin: 0;
}
Step 1. Download Docker Community edition (https://store.docker.com/search?type=edition&offering=community)
and install it in your computer.
Step 2. Clone the Symfony Demo app in your computer: `git clone git@github.com:symfony/demo.git`
Step 3. ????
Step 4. ????
Step 5. ????
Step 6. ????
Step 7. ????
Step 8. ????
Step 9. ????