Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1.42 KB

File metadata and controls

60 lines (40 loc) · 1.42 KB

SonataExtraAdminBundle

Provides some extra features to Sonata Admin.

Installation

Download SonataExtraAdminBundle using Composer

Add on composer.json (see http://getcomposer.org/)

"require" :  {
    // ...
    "picoss/sonata-extra-admin-bundle": "dev-master",
}

Now tell composer to download the bundle by running the command:

$ php composer.phar require picoss/sonata-extra-admin-bundle

Composer will install the bundle to your project's vendor/picoss directory.

Register the bundle

To start using this bundle, register it in the Kernel:

<?php

// config/bundles.php

return [
    //...
    Picoss\SonataExtraAdminBundle\PicossSonataExtraAdminBundle::class => ['all' => true],
];

Configure the bundle (optional)

This bundle comes with a default configuration.

See Configuration reference to override default configuration

Next Step

Now that you have completed the basic installation and configuration of the PicossSonataExtraAdmin, you are ready to learn about more advanced features and usages of the bundle.

The following documents are available: