Skip to content

Latest commit

 

History

History
170 lines (127 loc) · 5.95 KB

bundles.rst

File metadata and controls

170 lines (127 loc) · 5.95 KB

The Bundle System

Caution

In Symfony versions prior to 4.0, it was recommended to organize your own application code using bundles. This is no longer recommended and bundles should only be used to share code and features between multiple applications.

A bundle is similar to a plugin in other software, but even better. The core features of Symfony framework are implemented with bundles (FrameworkBundle, SecurityBundle, DebugBundle, etc.) They are also used to add new features in your application via third-party bundles.

Bundles used in your applications must be enabled per environment <configuration-environments> in the config/bundles.php file:

// config/bundles.php
return [
    // 'all' means that the bundle is enabled for any Symfony environment
    Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
    Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
    Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
    Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
    Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
    Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
    // this bundle is enabled only in 'dev' and 'test', so you can't use it in 'prod'
    Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
];

Tip

In a default Symfony application that uses Symfony Flex <symfony-flex>, bundles are enabled/disabled automatically for you when installing/removing them, so you don't need to look at or edit this bundles.php file.

Creating a Bundle

This section creates and enables a new bundle to show there are only a few steps required. The new bundle is called AcmeTestBundle, where the Acme portion is an example name that should be replaced by some "vendor" name that represents you or your organization (e.g. AbcTestBundle for some company named Abc).

Start by creating a new class called AcmeTestBundle:

// src/AcmeTestBundle.php
namespace Acme\TestBundle;

use Symfony\Component\HttpKernel\Bundle\AbstractBundle;

class AcmeTestBundle extends AbstractBundle
{
}

6.1

The Symfony\\Component\\HttpKernel\\Bundle\\AbstractBundle was introduced in Symfony 6.1.

Caution

If your bundle must be compatible with previous Symfony versions you have to extend from the Symfony\\Component\\HttpKernel\\Bundle\\Bundle instead.

Tip

The name AcmeTestBundle follows the standard Bundle naming conventions <bundles-naming-conventions>. You could also choose to shorten the name of the bundle to simply TestBundle by naming this class TestBundle (and naming the file TestBundle.php).

This empty class is the only piece you need to create the new bundle. Though commonly empty, this class is powerful and can be used to customize the behavior of the bundle. Now that you've created the bundle, enable it:

// config/bundles.php
return [
    // ...
    Acme\TestBundle\AcmeTestBundle::class => ['all' => true],
];

And while it doesn't do anything yet, AcmeTestBundle is now ready to be used.

Bundle Directory Structure

The directory structure of a bundle is meant to help to keep code consistent between all Symfony bundles. It follows a set of conventions, but is flexible to be adjusted if needed:

src/

Contains all PHP classes related to the bundle logic (e.g. Controller/RandomController.php).

config/

Houses configuration, including routing configuration (e.g. routing.yaml).

templates/

Holds templates organized by controller name (e.g. random/index.html.twig).

translations/

Holds translations organized by domain and locale (e.g. AcmeTestBundle.en.xlf).

public/

Contains web assets (images, compiled CSS and JavaScript files, etc.) and is copied or symbolically linked into the project public/ directory via the assets:install console command.

assets/

Contains the web asset sources (JavaScript and TypeScript files, CSS and Sass files, etc.), images and other assets related to the bundle that are not in public/ (e.g. Stimulus controllers)

tests/

Holds all tests for the bundle.

Caution

The recommended bundle structure was changed in Symfony 5, read the Symfony 4.4 bundle documentation for information about the old structure.

When using the new AbstractBundle class, the bundle defaults to the new structure. Override the Bundle::getPath() method to change to the old structure:

class AcmeTestBundle extends AbstractBundle
{
    public function getPath(): string
    {
        return __DIR__;
    }
}

Tip

It's recommended to use the PSR-4 autoload standard: use the namespace as key, and the location of the bundle's main class (relative to composer.json) as value. As the main class is located in the src/ directory of the bundle:

{
    "autoload": {
        "psr-4": {
            "Acme\\TestBundle\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Acme\\TestBundle\\Tests\\": "tests/"
        }
    }
}

Learn more

  • /bundles/override
  • /bundles/best_practices
  • /bundles/configuration
  • /bundles/extension
  • /bundles/prepend_extension