Where to put Symfony2 custom parameters I need?

configuration, database, parameters, symfony

Solution

One should keep his parameters inside the bundles, for instance `src/Company/SomeBundle/Resources/config/parameters.yml`

Problem

I need to have some configuration for my bundle in Symfony2 Where is the best place to put them? and how can I retrieve them from there? I used my Default DB parameters in `PARAMETERS.INI` But I need Extra ones that I can retrieve them personally in code.

Original source