Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compatibility with Silex 2 - issue #120 #121

Merged
merged 1 commit into from
Jul 5, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>
*
* 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)
{
}
}