2017 © Pedro Peláez
 

library starter

Simple SaaS administration for Symfony2

image

nobru/starter

Simple SaaS administration for Symfony2

  • Tuesday, March 28, 2017
  • by nobru
  • Repository
  • 1 Watchers
  • 3 Stars
  • 88 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Starter admin for Symfony2

Starter is a set of Symfony Bundles that helps you to easily create simple SaaS administration., (*1)

Installation

1) Add the dependencie on composer.json file:, (*2)

    "require": {
        "nobru/starter": "dev-master"
    }

2) Add the Starter bundles on app/AppKernel.php:, (*3)


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

3) Add the starter route on app/config/routing.yml, (*4)

main:
    resource: "@StarterDashboardBundle/Resources/config/routing.yml"
    prefix: /starter

4) Add the StarterBaseBundle to the asstic config on app/config.yml, (*5)

assetic:
    debug:          "%kernel.debug%"
    use_controller: false
    bundles:        ["StarterBaseBundle"]

The Versions

28/03 2017

dev-master

9999999-dev http://starter.nobru.com.br

Simple SaaS administration for Symfony2

  Sources   Download

The Requires

  • php >=5.3

 

by Bruno Bacus