Skip to content
Snippets Groups Projects
Commit 9ac26c61 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Merge branch 'renovate/all-minor-patch' into 'main'

Update all non-major dependencies

See merge request dbp/middleware/dbp-api/api-server-template!1
parents 3b4ac19b 30c8f94a
No related branches found
No related tags found
1 merge request!1Update all non-major dependencies
Pipeline #15705 passed
......@@ -42,7 +42,7 @@ psalm:
stage: test
allow_failure: true
script:
- sudo update-alternatives --set php /usr/bin/php7.3
- sudo update-alternatives --set php /usr/bin/php7.4
- composer install
- composer run psalm
......@@ -50,7 +50,7 @@ phpstan:
stage: test
allow_failure: true
script:
- sudo update-alternatives --set php /usr/bin/php7.3
- sudo update-alternatives --set php /usr/bin/php7.4
- composer install
- composer run phpstan
......@@ -58,6 +58,6 @@ cs-fixer:
stage: test
allow_failure: true
script:
- sudo update-alternatives --set php /usr/bin/php7.3
- sudo update-alternatives --set php /usr/bin/php7.4
- composer install
- composer run cs
This diff is collapsed.
......@@ -27,10 +27,10 @@ class Kernel extends BaseKernel
}
}
protected function configureContainer(ContainerBuilder $c, LoaderInterface $loader): void
protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader): void
{
$c->addResource(new FileResource($this->getProjectDir().'/config/bundles.php'));
$c->setParameter('container.dumper.inline_class_loader', true);
$container->addResource(new FileResource($this->getProjectDir().'/config/bundles.php'));
$container->setParameter('container.dumper.inline_class_loader', true);
$confDir = $this->getProjectDir().'/config';
$loader->load($confDir.'/{packages}/*'.self::CONFIG_EXTS, 'glob');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment