From 736966f098df9dde618fe8c0cbb6fdd9d6724806 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 28 Oct 2020 13:51:49 +0100 Subject: duplicate v4 --- php-symfony4-autoload.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 php-symfony4-autoload.patch (limited to 'php-symfony4-autoload.patch') diff --git a/php-symfony4-autoload.patch b/php-symfony4-autoload.patch new file mode 100644 index 0000000..3b56f7d --- /dev/null +++ b/php-symfony4-autoload.patch @@ -0,0 +1,17 @@ +diff -up ./src/Symfony/Component/VarDumper/Resources/bin/var-dump-server.old ./src/Symfony/Component/VarDumper/Resources/bin/var-dump-server +--- ./src/Symfony/Component/VarDumper/Resources/bin/var-dump-server.old 2018-09-04 13:33:05.600027027 +0200 ++++ ./src/Symfony/Component/VarDumper/Resources/bin/var-dump-server 2018-09-04 13:34:32.377481003 +0200 +@@ -31,11 +31,9 @@ function includeIfExists(string $file): + } + + if ( +- !includeIfExists(__DIR__ . '/../../../../autoload.php') && +- !includeIfExists(__DIR__ . '/../../vendor/autoload.php') && +- !includeIfExists(__DIR__ . '/../../../../../../vendor/autoload.php') ++ !includeIfExists('/usr/share/php/Symfony4/autoload.php') + ) { +- fwrite(STDERR, 'Install dependencies using Composer.'.PHP_EOL); ++ fwrite(STDERR, 'Install dependencies.'.PHP_EOL); + exit(1); + } + -- cgit