nobru/starter

There is no license information available for the latest version (1.0.0) of this package.

Simple SaaS administration for Symfony2

1.0.0 2023-10-18 18:44 UTC

This package is auto-updated.

Last update: 2024-03-20 20:09:00 UTC


README

Starter is a set of Symfony Bundles that helps you to easily create simple SaaS administration.

Installation

  1. Add the dependencie on composer.json file:
    "require": {
        "nobru/starter": "dev-master"
    }

  1. Add the Starter bundles on app/AppKernel.php:
    public function registerBundles()
    {
        $bundles = array(

            ...

            new Starter\DashboardBundle\StarterDashboardBundle(),
            new Starter\BaseBundle\StarterBaseBundle(),
            new Starter\BillingBundle\StarterBillingBundle(),
            new Starter\PlanBundle\StarterPlanBundle(),
            new Starter\UserBundle\StarterUserBundle(),
        );

        ...
    }
  1. Add the starter route on app/config/routing.yml
main:
    resource: "@StarterDashboardBundle/Resources/config/routing.yml"
    prefix: /starter
  1. Add the StarterBaseBundle to the asstic config on app/config.yml
assetic:
    debug:          "%kernel.debug%"
    use_controller: false
    bundles:        ["StarterBaseBundle"]