Changed compatibility to PHP 8
Changed localizeddate to format_datetime
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_exception_checker.XXX')by$configService->getParameter('c975LExceptionChecker.XXX'), where$configServiceis the injection ofc975L\ConfigBundle\Service\ConfigServiceInterface. - The
exceptionCheckerSecretis now managed by c975L/ConfigBundle, so you can delete it fromparameters.ymlandparameters.yml.dist, but before that, copy/paste it in the config. - Before the first use of parameters, you MUST use the console command
php bin/console config:createto create the config files with default data.