2017 © Pedro Peláez
 

symfony-bundle slugger-bundle

GiBiLogic Slugger Bundle

image

gibilogic/slugger-bundle

GiBiLogic Slugger Bundle

  • Saturday, July 7, 2018
  • by gibilogic
  • Repository
  • 3 Watchers
  • 1 Stars
  • 1,422 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 7 Versions
  • 9 % Grown

The README.md

GiBiLogic SluggerBundle

A small bundle that contains a ready-to-use slugger service for Symfony 2., (*1)

The slugify operation:, (*2)

  • Removes new lines (\n) and/or carriage returns (\r)
  • Replaces extended characters ("æ" and "Ñ", for example) into their "plain" versions ("ae" and "n", for example)
  • Converts the entire string in lower case (by using the mb_strtolower function)
  • Replaces every non-letter non-number character with a separator (defaults to -)

Installation

Add this bundle to the composer.json of your application with the console command:, (*3)

composer require gibilogic/slugger-bundle

Or, if you are using composer.phar, use the console command:, (*4)

php composer.phar require gibilogic/slugger-bundle

Add the bundle to your AppKernel.php:, (*5)

...
new Gibilogic\SluggerBundle\GibilogicSluggerBundle(),
...

Usage

Inside your Symfony 2 application, get the slugger service:, (*6)

/* @var \Gibilogic\SluggerBundle\Service\Slugger $sluggerService */
$sluggerService = $this->container->get('gibilogic.slugger');

Then call its slugify method:, (*7)

$slug = $sluggerService->slugify($string);

You can also specify the slug character separator (defaults to -):, (*8)

$slug = $sluggerService->slugify($string, '_');

The Versions

07/07 2018

dev-master

9999999-dev http://www.gibilogic.com

GiBiLogic Slugger Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

slug slugify slugger

29/05 2018

1.0.5

1.0.5.0 http://www.gibilogic.com

GiBiLogic Slugger Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

slug slugify slugger

28/03 2018

1.0.4

1.0.4.0 http://www.gibilogic.com

GiBiLogic Slugger Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

slug slugify slugger

24/03 2017

1.0.3

1.0.3.0 http://www.gibilogic.com

GiBiLogic Slugger Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

slug slugify slugger

03/12 2015

1.0.2

1.0.2.0 http://www.gibilogic.com

GiBiLogic Slugger Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

slug slugify slugger

16/10 2015

1.0.1

1.0.1.0 http://www.gibilogic.com

GiBiLogic Slugger Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

slug slugify slugger

02/10 2015

1.0.0

1.0.0.0 http://www.gibilogic.com

GiBiLogic Slugger Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

slug slugify slugger