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 b1c16c7 + d83befd commit 1271bc2Copy full SHA for 1271bc2
bin/perf.php
@@ -9,6 +9,10 @@
9
throw new RuntimeException('Unable to locate autoload.php file.');
10
}
11
12
+$xdebug = new \Composer\XdebugHandler\XdebugHandler('perf.php');
13
+$xdebug->check();
14
+unset($xdebug);
15
+
16
$dir = isset($argv[1]) ? $argv[1] : __DIR__ . '/../tests/compliance/perf';
17
is_dir($dir) or die('Dir not found: ' . $dir);
18
// Warm up the runner
composer.json
@@ -17,6 +17,7 @@
},
19
"require-dev": {
20
+ "composer/xdebug-handler": "^1.2",
21
"phpunit/phpunit": "^4.8.36|^7.5.15"
22
23
0 commit comments