diff options
Diffstat (limited to 'php-symfony4-generate-autoloaders.php')
-rwxr-xr-x | php-symfony4-generate-autoloaders.php | 7 |
1 files changed, 6 insertions, 1 deletions
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', ], |