Provides some extra features to Sonata Admin.
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.
To start using this bundle, register it in the Kernel:
<?php
// config/bundles.php
return [
//...
Picoss\SonataExtraAdminBundle\PicossSonataExtraAdminBundle::class => ['all' => true],
];
This bundle comes with a default configuration.
See Configuration reference to override default configuration
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: