Skip to content

Commit

Permalink
Fix compatibility with Silex 2 - issue #120 (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
shamotj authored and Florian Eckerstorfer committed Jul 5, 2016
1 parent e7c1dee commit 1888c3c
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions src/Bridge/Silex2/SlugifyServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<?php

/**
* This file is part of cocur/slugify.
*
* (c) Florian Eckerstorfer <florian@eckerstorfer.co>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cocur\Slugify\Bridge\Silex2;

use Cocur\Slugify\Bridge\Twig\SlugifyExtension;
use Cocur\Slugify\Slugify;
use Pimple\Container;
use Pimple\ServiceProviderInterface;
use Silex\Application;

/**
* SlugifyServiceProvider
*
* @package cocur/slugify
* @subpackage bridge
* @license http://www.opensource.org/licenses/MIT The MIT License
*/
class SlugifyServiceProvider implements ServiceProviderInterface
{
/**
* {@inheritDoc}
*/
public function register(Container $container)
{
$container['slugify.options'] = [];
$container['slugify.provider'] = null;

$container['slugify'] = function ($container) {
return new Slugify($container['slugify.options'], $container['slugify.provider']);
};

if (isset($container['twig'])) {
$container['twig'] = $container->extend('twig', function (\Twig_Environment $twig, $container) {
$twig->addExtension(new SlugifyExtension($container['slugify']));

return $twig;
});
}
}

/**
* {@inheritDoc}
*/
public function boot(Application $app)
{
}
}

0 comments on commit 1888c3c

Please sign in to comment.