Skip to content

Commit

Permalink
Support Symfony 7 (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
back-2-95 authored Oct 28, 2023
1 parent 89b0148 commit 6a1f189
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
"require": {
"php": ">=7.1",
"doctrine/orm": "^2.6.3",
"symfony/property-access": "^4.4 || ^5.4 || ^6.0",
"symfony/property-info": "^4.4 || ^5.4 || ^6.0",
"symfony/serializer": "^4.4 || ^5.4 || ^6.0"
"symfony/property-access": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/property-info": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/serializer": "^4.4 || ^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^1.12.13 || ^2.2",
"doctrine/dbal": "^2.7 || ^3.3",
"symfony/finder": "^4.4 || ^5.4 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^5.4 || ^6.0",
"symfony/phpunit-bridge": "^6.0"
"symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^6.0 || ^7.0"
},
"suggest": {
"symfony/framework-bundle": "To use the provided bundle.",
Expand Down
2 changes: 1 addition & 1 deletion src/Bundle/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final class Configuration implements ConfigurationInterface
/**
* @return TreeBuilder
*/
public function getConfigTreeBuilder()
public function getConfigTreeBuilder(): TreeBuilder
{
$treeBuilder = new TreeBuilder('dunglas_doctrine_json_odm');

Expand Down

0 comments on commit 6a1f189

Please sign in to comment.