4 Applications that use Symfony Flex
5 ----------------------------------
7 Open a command console, enter your project directory and execute:
10 $ composer require <package-name>
13 Applications that don't use Symfony Flex
14 ----------------------------------------
16 ### Step 1: Download the Bundle
18 Open a command console, enter your project directory and execute the
19 following command to download the latest stable version of this bundle:
22 $ composer require <package-name>
25 This command requires you to have Composer installed globally, as explained
26 in the [installation chapter](https://getcomposer.org/doc/00-intro.md)
27 of the Composer documentation.
29 ### Step 2: Enable the Bundle
31 Then, enable the bundle by adding it to the list of registered bundles
32 in the `app/AppKernel.php` file of your project:
39 class AppKernel extends Kernel
41 public function registerBundles()
45 new <vendor>\<bundle-name>\<bundle-long-name>(),