Skip to content

Commit e812193

Browse files
committed
test with symfony 7 and php 8.3
1 parent f675f64 commit e812193

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

.github/workflows/test-application.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
dev-dependencies: true
2727
- php-version: '8.1'
2828
- php-version: '8.2'
29+
- php-version: '8.3'
30+
dev-dependencies: true
2931

3032
steps:
3133
- name: Checkout project

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"require": {
3030
"php": "^7.2 || ^8.0",
3131
"phpcr/phpcr": "~2.1.0",
32-
"symfony/console": "^2.3 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
32+
"symfony/console": "^2.3 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
3333
},
3434
"require-dev": {
3535
"ramsey/uuid": "^3.5",

src/PHPCR/Util/Console/Helper/PhpcrConsoleDumperHelper.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,7 @@ public function getTreeWalker(OutputInterface $output, $options)
4343
return $treeWalker;
4444
}
4545

46-
/**
47-
* {@inheritdoc}
48-
*/
49-
public function getName()
46+
public function getName(): string
5047
{
5148
return 'phpcr_console_dumper';
5249
}

src/PHPCR/Util/Console/Helper/PhpcrHelper.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,7 @@ public function getSession()
4444
return $this->session;
4545
}
4646

47-
/**
48-
* {@inheritdoc}
49-
*/
50-
public function getName()
47+
public function getName(): string
5148
{
5249
return 'phpcr';
5350
}

0 commit comments

Comments
 (0)