2017 © Pedro Peláez
 

symfony-bundle quick-install-bundle

The last bundle you will install.

image

exsyst/quick-install-bundle

The last bundle you will install.

  • Thursday, August 18, 2016
  • by EXSyst
  • Repository
  • 2 Watchers
  • 2 Stars
  • 12 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

EXSyst Quick Install Bundle

This symfony bundle allows to quickly register symfony bundles into your app and to configure some of them., (*1)

How to install it?

Open a command console, enter your project directory and execute the following command:, (*2)

~/my-app $ composer require exsyst/quick-install-bundle 0.0.x-dev

Then add the bundle to your kernel:, (*3)

// app/AppKernel.php
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new EXSyst\Bundle\QuickInstallBundle\EXSystQuickInstallBundle(),
        );

        // ...
    }
}

And that's all!, (*4)

How to use it?

This bundle provides a console command:, (*5)

~/my-app $ bin/console configure FOSRestBundle
Add the bundle "FOS\RestBundle\FOSRestBundle" to your kernel "AppKernel"? [yes]:
FOS\RestBundle\FOSRestBundle has been registered in AppKernel.

What does it support?

This bundle can add any bundle to your kernel. For some it can even configure some of their features (you can try that with dunglas/action-bundle)., (*6)

Contributing

If you want to change something or have an idea, submit an issue or open a pull request :), (*7)

The Versions

18/08 2016

dev-master

9999999-dev

The last bundle you will install.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar EXSyst