Skip to content

Commit 1125ab4

Browse files
authored
Merge pull request #179 from dave-redfern/support-sf6
Add support for Symfony 6
2 parents d9037fd + e11c14a commit 1125ab4

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
/.idea/
12
/vendor/
23
composer.lock
34
tests/Fixtures/Symfony/cache
45
tests/Fixtures/Symfony/logs
5-
tests/Fixtures/Symfony/var
6+
tests/Fixtures/Symfony/var
7+
.phpunit.result.cache

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"license": "MIT",
55
"require": {
66
"php-pm/php-pm": "^2.0",
7-
"symfony/http-foundation": "^3.4|^4.2.12|^5.0",
8-
"symfony/http-kernel": "^3.4|^4.0|^5.0",
7+
"symfony/http-foundation": "^4.2.12|^5.0|^6.0",
8+
"symfony/http-kernel": "^4.0|^5.0|^6.0",
99
"guzzlehttp/psr7": "^1.5"
1010
},
1111
"require-dev": {
12-
"phpunit/phpunit": "^7.0",
13-
"symfony/framework-bundle": "^3.4|^4.1.12|^5.0",
14-
"symfony/yaml": "^3.4|^4.0|^5.0",
12+
"phpunit/phpunit": "^9.5",
13+
"symfony/framework-bundle": "^4.1.12|^5.0|^6.0",
14+
"symfony/yaml": "^4.0|^5.0|^6.0",
1515
"doctrine/annotations": "^1.6"
1616
},
1717
"autoload": {

tests/Fixtures/Symfony/Kernel.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
use Symfony\Component\Config\Loader\LoaderInterface;
77
use Symfony\Component\Config\Resource\FileResource;
88
use Symfony\Component\DependencyInjection\ContainerBuilder;
9-
use Symfony\Component\Routing\RouteCollectionBuilder;
9+
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
1010

1111
class Kernel extends \Symfony\Component\HttpKernel\Kernel
1212
{
1313
use MicroKernelTrait;
1414

1515
const CONFIG_EXTS = '.{php,xml,yaml,yml}';
1616

17-
public function registerBundles()
17+
public function registerBundles(): iterable
1818
{
1919
$contents = require $this->getProjectDir() . '/config/bundles.php';
2020
foreach ($contents as $class => $envs) {
@@ -36,14 +36,14 @@ protected function configureContainer(ContainerBuilder $container, LoaderInterfa
3636
$loader->load($confDir . '/{services}' . self::CONFIG_EXTS, 'glob');
3737
}
3838

39-
protected function configureRoutes(RouteCollectionBuilder $routes)
39+
protected function configureRoutes(RoutingConfigurator $routes)
4040
{
4141
$confDir = $this->getProjectDir() . '/config';
4242

43-
$routes->import($confDir . '/{routes}' . self::CONFIG_EXTS, '/', 'glob');
43+
$routes->import($confDir . '/{routes}' . self::CONFIG_EXTS);
4444
}
4545

46-
public function getProjectDir()
46+
public function getProjectDir(): string
4747
{
4848
return __DIR__;
4949
}

tests/SymfonyBootstrapTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212

1313
class SymfonyBootstrapTest extends TestCase
1414
{
15-
public function setUp()
15+
public function setUp(): void
1616
{
1717
ProcessSlave::$slave = new ProcessSlaveDouble();
1818
}
1919

20-
public static function tearDownAfterClass()
20+
public static function tearDownAfterClass(): void
2121
{
2222
$fs = new Filesystem();
2323
$fs->remove(__DIR__.'/Fixtures/Symfony/var');

0 commit comments

Comments
 (0)