ont/laravel-uploader

Implementation of Ont\Interfaces\Uploader which saves files in local filesystem.

0.1.2-alpha 2016-04-11 11:41 UTC

This package is auto-updated.

Last update: 2020-07-29 04:32:26 UTC


README

Simple local filesystem storage for file uploads. This package provides Uploader interface implementation needed by ont/laravel-magic-rest package.

Installation

composer require ont/laravel-uploader

and then add service provider to `config/app.php`

    <?php
        'providers' => array(
            ...
            'Ont\Uploader\ServiceProvider',
            ...
        ),
    ?>

Also you can do `php artisan vendor:publishand configure storage path and allowed file extensions in/config/uploader.php`