Skip to content

Commit 6a1f189

Browse files
authored
Support Symfony 7 (#130)
1 parent 89b0148 commit 6a1f189

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@
1515
"require": {
1616
"php": ">=7.1",
1717
"doctrine/orm": "^2.6.3",
18-
"symfony/property-access": "^4.4 || ^5.4 || ^6.0",
19-
"symfony/property-info": "^4.4 || ^5.4 || ^6.0",
20-
"symfony/serializer": "^4.4 || ^5.4 || ^6.0"
18+
"symfony/property-access": "^4.4 || ^5.4 || ^6.0 || ^7.0",
19+
"symfony/property-info": "^4.4 || ^5.4 || ^6.0 || ^7.0",
20+
"symfony/serializer": "^4.4 || ^5.4 || ^6.0 || ^7.0"
2121
},
2222
"require-dev": {
2323
"doctrine/annotations": "^1.0",
2424
"doctrine/doctrine-bundle": "^1.12.13 || ^2.2",
2525
"doctrine/dbal": "^2.7 || ^3.3",
26-
"symfony/finder": "^4.4 || ^5.4 || ^6.0",
27-
"symfony/framework-bundle": "^4.4 || ^5.4 || ^6.0",
28-
"symfony/phpunit-bridge": "^6.0"
26+
"symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0",
27+
"symfony/framework-bundle": "^4.4 || ^5.4 || ^6.0 || ^7.0",
28+
"symfony/phpunit-bridge": "^6.0 || ^7.0"
2929
},
3030
"suggest": {
3131
"symfony/framework-bundle": "To use the provided bundle.",

src/Bundle/DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ final class Configuration implements ConfigurationInterface
1717
/**
1818
* @return TreeBuilder
1919
*/
20-
public function getConfigTreeBuilder()
20+
public function getConfigTreeBuilder(): TreeBuilder
2121
{
2222
$treeBuilder = new TreeBuilder('dunglas_doctrine_json_odm');
2323

0 commit comments

Comments
 (0)