symfony / recipes-contrib

Symfony Contrib Recipes Repositories
https://github.com/symfony/recipes-contrib/blob/flex/main/RECIPES.md
MIT License
526 stars 630 forks source link
recipes symfony

Symfony Recipes (Contrib)

Symfony recipes allow the automation of Composer packages configuration via the Symfony Flex_ Composer plugin.

This repository hosts contributed recipes for Composer packages that are not part of the "official" Symfony recipes_. To enable recipes defined in this repository for your project, run the following command:

.. code-block:: bash

composer config extra.symfony.allow-contrib true

See RECIPES.md_ for a full list of recipes that live in this repository.

Contributing

For more information about contributing a recipe, read the documentation_ on the main repository and the Best Practices below.

Unlike for official recipes, the pull requests for new contrib recipes are managed by the community. Pull requests are reviewed by the Symfony Bot and automatically merged when the following conditions are met (in that order):

Best Practices

Default Bundle Config #####################

A recipe for a bundle should not contain all the configuration the bundle has to offer. A good recipe only contains a suggestion config for an application. That is config that needs to be configured but no real default value exists.

Example: The "items per page" in a paginator bundle or API credentials for an API client bundle.

If environment variables are used, they must be provided to the bundle's config.

A bundle without config or routes do not need a recipe. Flex is smart enough to install that bundle anyways.

Modify Other Bundle's config ############################

The general rule is that no recipe should modify other bundle's configuration. There is however one exception. A recipe is allowed to append to a "config collection".

Example: Add a new connection to DoctrineBundle or add a new cache adapter to Symfony Framework bundle.

Maintainability ###############

The symfony/recipes-contrib repository should contain the config for packages. Using "copy-from-package Configurator" for routes and config is not allowed. That would make the recipes impossible to maintain and to assure their quality.

Recipes is also not a replacement for composer create-project. That means it is not intended to be used as "bootstrap full application" and copy a lot of PHP code, front-end assets etc. Recipes are for quick installation of packages.

.. Symfony Flex: https://github.com/symfony/flex .. Symfony recipes: https://github.com/symfony/recipes .. documentation: https://github.com/symfony/recipes .. RECIPES.md: https://github.com/symfony/recipes-contrib/blob/flex/main/RECIPES.md