n445/symfonymedia

Bundle symfony pour l'upload de media

Installs: 21

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 2

Type:symfony-bundle

1.1.1 2020-08-02 14:03 UTC

This package is auto-updated.

Last update: 2024-04-30 00:28:28 UTC


README

Step 1: Download the Bundle

composer require n445/symfonymedia

Step 2: Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project:

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new N445\Contact\N445Image(),
        ];

        // ...
    }

    // ...
}