4 Applications that use Symfony Flex
 
   5 ----------------------------------
 
   7 Add bundle custom repository to your project's `composer.json` file:
 
  16                             "name": "rapsys/airbundle",
 
  17                             "version": "dev-master",
 
  20                                     "url": "https://git.rapsys.eu/airbundle",
 
  25                                             "Rapsys\\AirBundle\\": ""
 
  35 Then open a command console, enter your project directory and execute:
 
  38 $ composer require rapsys/airbundle dev-master
 
  41 Applications that don't use Symfony Flex
 
  42 ----------------------------------------
 
  44 ### Step 1: Download the Bundle
 
  46 Open a command console, enter your project directory and execute the
 
  47 following command to download the latest stable version of this bundle:
 
  50 $ composer require rapsys/airbundle dev-master
 
  53 This command requires you to have Composer installed globally, as explained
 
  54 in the [installation chapter](https://getcomposer.org/doc/00-intro.md)
 
  55 of the Composer documentation.
 
  57 ### Step 2: Enable the Bundle
 
  59 Then, enable the bundle by adding it to the list of registered bundles
 
  60 in the `app/AppKernel.php` file of your project:
 
  67 class AppKernel extends Kernel
 
  69     public function registerBundles()
 
  73             new Rapsys\AirBundle\RapsysAirBundle(),