Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:
symfony-require: "6.4.*"
php-version: "8.2"
symfony-deprecations-helper: "weak"
- dependencies: "php-http/guzzle7-adapter symfony/http-client:^7.1"
symfony-require: "7.1.*"
- dependencies: "php-http/guzzle7-adapter symfony/http-client:^7.3"
symfony-require: "7.3.*"
php-version: "8.2"
symfony-deprecations-helper: "weak"

Expand Down
5 changes: 3 additions & 2 deletions tests/Resources/app/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,9 @@ public function loadRoutes(LoaderInterface $loader): RouteCollection
$collection->add('/', new Route('/', ['_controller' => 'kernel::indexAction']));

$routes = new RoutingConfigurator($collection, $kernelLoader, $file, $file);
$routes->import('@WebProfilerBundle/Resources/config/routing/wdt.xml')->prefix('_wdt');
$routes->import('@WebProfilerBundle/Resources/config/routing/profiler.xml')->prefix('_profiler');
$extension = self::MAJOR_VERSION >= 7 ? 'php' : 'xml';
$routes->import('@WebProfilerBundle/Resources/config/routing/wdt.'.$extension)->prefix('_wdt');
$routes->import('@WebProfilerBundle/Resources/config/routing/profiler.'.$extension)->prefix('_profiler');

return $collection;
}
Expand Down