Skip to content

Instantly share code, notes, and snippets.

View tristanbes's full-sized avatar

Tristan Bessoussa tristanbes

View GitHub Profile
# Add the bundle to your composer
"a2lix/translation-form-bundle" : "dev-master"
# Enable the Bundle in the AppKernel.php
new A2lix\TranslationFormBundle\A2lixTranslationFormBundle(),
# Configure the Bundle in the config.yml
@tristanbes
tristanbes / gist:3918310
Created October 19, 2012 13:46
Install Stats.d on a debian server
sudo apt-get update && apt-get install git-core curl build-essential openssl libssl-dev
# Don't forget to go to the location you want to install node in (like cd /home/) before running these commands
git clone https://github.com/joyent/node.git
cd node
git checkout v0.8.12
./configure --openssl-libpath=/usr/lib/ssl
make
make test
@tristanbes
tristanbes / StatsDClientBundle.php
Created November 9, 2012 16:02
StatsDClientBundle installation
// composer.json
"require": {
# ..
"liuggio/statsd-client-bundle": ">=1.2",
# ..
}
// After running php composer.phar update liuggio/statsd-client-bundle
// Enable the Bundle in AppKernel.php
@tristanbes
tristanbes / DefaultController.php
Created November 23, 2012 15:02
Controller Example of Monitor your Symfony2 application via Stats.d and Graphite (2/2)
<?php
namespace SeekTeam\PremiumBundle\Controller;
use SeekTeam\HomeBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use JMS\SecurityExtraBundle\Annotation\Secure;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\GenericEvent;
@tristanbes
tristanbes / Events.php
Created November 23, 2012 15:07
Monitor your Symfony2 application via Stats.d and Graphite (2/2)
<?php
namespace SeekTeam\PremiumBundle\Event;
final class Events
{
const PREMIUM_START = 'gamercertified.premium.start';
const PREMIUM_SUCCESS = 'gamercertified.premium.success';
const PREMIUM_CANCEL = 'gamercertified.premium.cancel';
const PREMIUM_ERROR = 'gamercertified.premium.error';
@tristanbes
tristanbes / StatsListener.php
Created November 23, 2012 15:17
Controller Example of Monitor your Symfony2 application via Stats.d and Graphite (2/2)
<?php
namespace SeekTeam\PremiumBundle\Event\Listener;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\EventDispatcher\GenericEvent;
use SeekTeam\PremiumBundle\Event\Events;
class StatsListener implements EventSubscriberInterface
@tristanbes
tristanbes / services.xml
Created November 23, 2012 15:39
Controller Example of Monitor your Symfony2 application via Stats.d and Graphite (2/2)
<service id="seek_team_premium.contact.listener" class="SeekTeam\PremiumBundle\Event\Listener\StatsListener">
<tag name="kernel.event_subscriber" />
<argument type="service" id="liuggio_stats_d_client.factory" />
<argument type="service" id="liuggio_stats_d_client.service" />
</service>
main:
remember_me:
key: "%secret%"
lifetime: 31536000
path: /
domain: .my-domain.com # Defaults to the current domain from $_SERVER
<?php
/**
* This class handles MoxieManager SymfonyAuthenticator (Symfony < 2.x).
*
* @author Tristan Bessoussa <tristan.bessoussa@gmail.com>
*/
class MOXMAN_SymfonyAuthenticator_Plugin implements MOXMAN_Auth_IAuthenticator
{
public function authenticate(MOXMAN_Auth_User $user)
// ...
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);