PHPackages                             wemxo/filer-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [File &amp; Storage](/categories/file-storage)
4. /
5. wemxo/filer-bundle

ActiveSymfony-bundle[File &amp; Storage](/categories/file-storage)

wemxo/filer-bundle
==================

Useful symfony bundle to manage file storage.

v1.0.1(11mo ago)183MITPHPPHP &gt;=8.0.2CI passing

Since Aug 4Pushed 11mo agoCompare

[ Source](https://github.com/wemxo/filer-bundle)[ Packagist](https://packagist.org/packages/wemxo/filer-bundle)[ RSS](/packages/wemxo-filer-bundle/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (6)Versions (3)Used By (0)

Filer
=====

[](#filer)

> The filer bundle is a symfony bundle that allow you to manage files storage.

#### Usage

[](#usage)

1- Configuration

```
# /config/packages/filer.yaml
filer:
    types:
        profile_picture:
            folder: profile_picture
            access: public
            mime_types: [image/jpeg, image/png]
            max_size: 5000000
            filters: [thumbnail]
            apply_watermarK: true
            keep_source: false
            source: thumbnail
        document:
            folder: document
            access: public
            mime_types: [text/plain]
            max_size: 5000000
            filters: ~
            apply_watermarK: false
            keep_source: true
            source: null
    accesses:
        private: 'private_filesystem'
        public: 'public_filesystem'

```

> `private_filesystem` and `public_filesystem` should be services alias of `Gaufrette\FilesystemInterface`. `thumbnail` must be a defined filter in `liip_imagine` `filter_sets` configuration.

2- Example

```
