Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 540 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 540 Bytes

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(),
             // ...
        ];
    }
}