exsyst/quick-install-bundle

The last bundle you will install.

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 4

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-master / 0.0.x-dev 2016-08-18 13:32 UTC

This package is auto-updated.

Last update: 2024-04-17 21:25:42 UTC


README

This symfony bundle allows to quickly register symfony bundles into your app and to configure some of them.

How to install it?

Open a command console, enter your project directory and execute the following command:

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

Then add the bundle to your kernel:

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

        // ...
    }
}

And that's all!

How to use it?

This bundle provides a console command:

~/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).

Contributing

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