We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 31d5769 + 718af7e commit cf88764Copy full SHA for cf88764
2 files changed
.github/workflows/continuous-integration.yml
@@ -64,4 +64,7 @@ jobs:
64
run: composer update ${{ env.COMPOSER_FLAGS }}
65
66
- name: Run tests
67
+ # Temp fix. PHP 8.1 needs phpunit 9.5.5+
68
+ env:
69
+ SYMFONY_DEPRECATIONS_HELPER: disabled=1
70
run: vendor/bin/simple-phpunit --verbose
src/XdebugHandler.php
@@ -598,6 +598,15 @@ private function checkConfiguration(&$info)
598
}
599
600
601
+
602
+ $workingDir = getcwd();
603
+ if (0 === strpos($workingDir, '\\\\')) {
604
+ if (defined('PHP_WINDOWS_VERSION_BUILD') && PHP_VERSION_ID < 70400) {
605
+ $info = 'cmd.exe does not support UNC paths: '.$workingDir;
606
+ return false;
607
+ }
608
609
610
return true;
611
612
0 commit comments