Skip to content

admin-platform/AdminBundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PlatformAdminBundle

This Bundle implement admin platform based on Sylius components.

Installation

Step 1. Install via Composer

composer require admin-platform/admin-bundle "dev-master"

Step 2. Add to AppKernel.php

class AppKernel extends Kernel
{
    /**
     * {@inheritdoc}
     */
    public function registerBundles()
    {
        $bundles = [
             // ...
             new Platform\Bundle\AdminBundle\PlatformAdminBundle(),
             // ...
        ];
    }
}