Skip to content

Commit

Permalink
test with symfony 7 and php 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed Sep 19, 2023
1 parent f675f64 commit e812193
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
dev-dependencies: true
- php-version: '8.1'
- php-version: '8.2'
- php-version: '8.3'
dev-dependencies: true

steps:
- name: Checkout project
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"require": {
"php": "^7.2 || ^8.0",
"phpcr/phpcr": "~2.1.0",
"symfony/console": "^2.3 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
"symfony/console": "^2.3 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"ramsey/uuid": "^3.5",
Expand Down
5 changes: 1 addition & 4 deletions src/PHPCR/Util/Console/Helper/PhpcrConsoleDumperHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,7 @@ public function getTreeWalker(OutputInterface $output, $options)
return $treeWalker;
}

/**
* {@inheritdoc}
*/
public function getName()
public function getName(): string
{
return 'phpcr_console_dumper';
}
Expand Down
5 changes: 1 addition & 4 deletions src/PHPCR/Util/Console/Helper/PhpcrHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,7 @@ public function getSession()
return $this->session;
}

/**
* {@inheritdoc}
*/
public function getName()
public function getName(): string
{
return 'phpcr';
}
Expand Down

0 comments on commit e812193

Please sign in to comment.