diff options
-rw-r--r-- | php-doctrine-doctrine-bundle.spec | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/php-doctrine-doctrine-bundle.spec b/php-doctrine-doctrine-bundle.spec index 30abcf3..a9d2ba2 100644 --- a/php-doctrine-doctrine-bundle.spec +++ b/php-doctrine-doctrine-bundle.spec @@ -21,9 +21,8 @@ # "php": "^7.1 || ^8.0" %global php_min_ver 7.1 # "doctrine/dbal": "^2.5.12|^3.0" -# ignore v3 not yet packaged %global dbal_min_ver 2.5.12 -%global dbal_max_ver 3.0 +%global dbal_max_ver 4 # "doctrine/doctrine-cache-bundle": "~1.2" %global cache_bundle_min_ver 1.2 %global cache_bundle_max_ver 2.0 @@ -74,7 +73,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Symfony Bundle for Doctrine License: MIT @@ -256,7 +255,10 @@ require_once '%{phpdir}/Fedora/Autoloader/autoload.php'; '%{phpdir}/Symfony3/Component/DependencyInjection/autoload.php', ], '%{phpdir}/Doctrine/Bundle/DoctrineCacheBundle/autoload.php', - '%{phpdir}/Doctrine/DBAL/autoload.php', + [ + '%{phpdir}/Doctrine/DBAL3/autoload.php', + '%{phpdir}/Doctrine/DBAL/autoload.php', + ], '%{phpdir}/Doctrine/Persistence/autoload.php', '%{phpdir}/jdorn-sql-formatter/autoload.php', '%{phpdir}/Symfony/Contracts/autoload.php', @@ -328,6 +330,9 @@ exit $RETURN_CODE %changelog +* Mon Nov 16 2020 Remi Collet <remi@remirepo.net> - 1.12.12-2 +- allow doctrine/dbal 3 + * Thu Nov 12 2020 Remi Collet <remi@remirepo.net> - 1.12.12-1 - update to 1.12.12 |