Changed localizeddate to format_datetime
Dropped support of Symfony 3.x
When upgrading from v1.x to v2.x you should(must) do the following if they apply to your case:
- The parameters entered in
config.ymlare not used anymore as they are managed by c975L/ConfigBundle, so you can delete them. - As the parameters are not in
config.yml, we can't access them via$this[->container]->getParameter(), so you have to replace$this->getParameter('c975_l_user.XXX')by$configService->getParameter('c975LUser.XXX'), where$configServiceis the injection ofc975L\ConfigBundle\Service\ConfigServiceInterface. - Before the first use of parameters, you MUST use the console command
php bin/console config:createto create the config files with default data.