From 4eda95ecfac1e09058276c0688ce2029fdfa8652 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 24 Jul 2020 11:52:18 +0200 Subject: update to 4.4.11 raise dependency on doctrine/data-fixtures 1.1 allow doctrine/persistence 2 allow phpdocumentor/reflection-docblock 5 --- php-symfony4-generate-autoloaders.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'php-symfony4-generate-autoloaders.php') diff --git a/php-symfony4-generate-autoloaders.php b/php-symfony4-generate-autoloaders.php index a566449..8d10691 100755 --- a/php-symfony4-generate-autoloaders.php +++ b/php-symfony4-generate-autoloaders.php @@ -35,6 +35,7 @@ final class AutoloadGenerator { 'prefix' => 'FEDORA_SYMFONY4_PHP_DIR', 'path' => 'Cache/IntegrationTests/autoload.php', ], + 'composer/package-versions-deprecated' => false, 'doctrine/annotations' => [ 'prefix' => 'FEDORA_SYMFONY4_PHP_DIR', 'path' => 'Doctrine/Common/Annotations/autoload.php', @@ -57,7 +58,10 @@ final class AutoloadGenerator { ], 'doctrine/persistence' => [ 'prefix' => 'FEDORA_SYMFONY4_PHP_DIR', - 'path' => 'Doctrine/Common/Persistence/autoload.php', + 'path' => [ + 'Doctrine/Common/Persistence2/autoload.php', + 'Doctrine/Common/Persistence/autoload.php', + ], ], 'doctrine/reflection' => [ 'prefix' => 'FEDORA_SYMFONY4_PHP_DIR', @@ -113,6 +117,7 @@ final class AutoloadGenerator { 'phpdocumentor/reflection-docblock' => [ 'prefix' => 'FEDORA_SYMFONY4_PHP_DIR', 'path' => [ + 'phpDocumentor/Reflection/DocBlock5/autoload.php', 'phpDocumentor/Reflection/DocBlock4/autoload.php', 'phpDocumentor/Reflection/DocBlock/autoload.php', ], -- cgit