PHPackages                             hugomn/uploader-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. hugomn/uploader-bundle

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

hugomn/uploader-bundle
======================

This bundle enhances the Symfony2 file upload experience using AjaxUpload library

016JavaScript

Since May 30Pushed 12y ago1 watchersCompare

[ Source](https://github.com/RockBee/EWZUploaderBundle)[ Packagist](https://packagist.org/packages/hugomn/uploader-bundle)[ RSS](/packages/hugomn-uploader-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

EWZUploaderBundle
=================

[](#ewzuploaderbundle)

The `EWZUploaderBundle` enhances the Symfony2 file upload experience using the [`AjaxUpload`](https://github.com/valums/ajax-upload) library.

Installation
------------

[](#installation)

### Step 1: Using Composer (recommended)

[](#step-1-using-composer-recommended)

To install EWZUploaderBundle with Composer just add the following to your `composer.json` file:

```
// composer.json
{
    // ...
    require: {
        // ...
        "excelwebzone/uploader-bundle": "master-dev"
    }
}
```

**NOTE**: Please replace `master-dev` in the snippet above with the latest stable branch, for example `1.0.*`.

Then, you can install the new dependencies by running Composer's `update`command from the directory where your `composer.json` file is located:

```
$ php composer.phar update
```

Now, Composer will automatically download all required files, and install them for you. All that is left to do is to update your `AppKernel.php` file, and register the new bundle:

```
