diff options
author | Remi Collet <remi@remirepo.net> | 2020-10-28 13:51:49 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-10-28 13:51:49 +0100 |
commit | 736966f098df9dde618fe8c0cbb6fdd9d6724806 (patch) | |
tree | 221331f088742e183f9175ee29a427df5e0f1964 /php-symfony4-autoload.patch |
Diffstat (limited to 'php-symfony4-autoload.patch')
-rw-r--r-- | php-symfony4-autoload.patch | 17 |
1 files changed, 17 insertions, 0 deletions
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); + } + |