ip/slugify-namer

Namer for the VichUploaderBundle which slugifies the filename of the uploaded file

1.1.0 2017-04-02 05:52 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:41:20 UTC


README

Namer for the VichUploaderBundle which slugifies the filename of the uploaded file

Installation

You can install SlugifyNamer through Composer:

$ composer require ip/slugify-namer

To use it in a Symfony2 project add it as a service in services.yml:

services:
...
    ip.slugify_namer:
          class: ip\SlugifyNamer\SlugifyNamer

Then add the service to your VichUploader mapping in config.yml

vich_uploader:
    ...
    mappings:
        example_upload:
            uri_prefix:         /upload/directory/
            upload_destination: %kernel.root_dir%/../web/upload/directory
            namer:              ip.slugify_namer
    ...