devnull-ir/slugmaker

This package is abandoned and no longer maintained. No replacement package was suggested.

Create a slug from the title

1.0.2 2022-07-11 08:27 UTC

This package is auto-updated.

Last update: 2024-07-11 12:50:03 UTC


README

Creates a slug from a string

install

composer require devnull-ir/slugmaker

Examples

slugMaker('This Test');

Output: This-Test

slugMaker('This Test',[
  'concat'=>'*'
]);

Output: This*Test