diff options
author | Remi Collet <remi@remirepo.net> | 2023-12-22 14:14:40 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2023-12-22 14:14:40 +0100 |
commit | e65f2eb91fb9eabb6af05343f949347793614bc5 (patch) | |
tree | 76c5ecc2c9e31d08d066e0221885c7866e1376aa | |
parent | 6d733211055d007dc4cf86f45db94c78e4ba1e2d (diff) |
fix possible autoloader issue with phpspec/prophecy
-rw-r--r-- | phpunit9.spec | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/phpunit9.spec b/phpunit9.spec index 4aeb487..dcc30ac 100644 --- a/phpunit9.spec +++ b/phpunit9.spec @@ -31,7 +31,7 @@ Name: %{pk_project}%{ver_major} Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 1%{?dist} +Release: 2%{?dist} Summary: The PHP Unit Testing framework version %{ver_major} License: BSD-3-Clause @@ -245,7 +245,6 @@ if (PHP_VERSION_ID > 80100) { '%{php_home}/SebastianBergmann/Template2/autoload.php', '%{php_home}/SebastianBergmann/Timer5/autoload.php', $inst, - '%{php_home}/Prophecy/autoload.php', '%{php_home}/SebastianBergmann/CliParser/autoload.php', '%{php_home}/SebastianBergmann/CodeUnit/autoload.php', '%{php_home}/SebastianBergmann/Invoker3/autoload.php', @@ -262,6 +261,8 @@ if (PHP_VERSION_ID > 80100) { '%{php_home}/PharIo/Manifest2/autoload.php', '%{php_home}/PharIo/Version3/autoload.php', __DIR__ . '/Framework/Assert/Functions.php', + // May load Comparator/RecursionContext bad version + '%{php_home}/Prophecy/autoload.php', ]); // Extensions \Fedora\Autoloader\Dependencies::optional( @@ -314,6 +315,9 @@ exit $ret %changelog +* Fri Dec 22 2023 Remi Collet <remi@remirepo.net> - 9.6.15-2 +- fix possible autoloader issue with phpspec/prophecy + * Sat Dec 2 2023 Remi Collet <remi@remirepo.net> - 9.6.15-1 - update to 9.6.15 |