boshurik/admin-bundle

Admin panel

dev-master / 0.x-dev 2016-08-11 10:13 UTC

This package is auto-updated.

Last update: 2024-04-12 02:57:32 UTC


README

Inspired by standard crud generator

Installation

Composer

$ composer require boshurik/admin-bundle

Register the bundle

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new BoShurik\AdminBundle\BoShurikAdminBundle(),
    );
    // ...
}

Add routes to app/config/routing.yml

    BoShurikAdminBundle:
        resource: "@BoShurikAdminBundle/Resources/config/routing.yml"
        prefix:   /admin

Add administrator entity, form type and form filter classes

TBD

Add security configuration

TBD

Development

  • npm install
  • bower install
  • gulp build

or just

  • npm install && bower install && gulp build