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.
1 parent 2acafcf commit d61d350Copy full SHA for d61d350
composer.json
@@ -48,9 +48,6 @@
48
"sebastian/version": "^6.0.0",
49
"staabm/side-effects-detector": "^1.0.5"
50
},
51
- "require-dev": {
52
- "ext-pcntl": "*"
53
- },
54
"config": {
55
"platform": {
56
"php": "8.3.0"
tests/end-to-end/cli/child-process-output.phpt
@@ -1,5 +1,10 @@
1
--TEST--
2
ShutdownHandler does not output when child process exits
3
+--SKIPIF--
4
+<?php declare(strict_types=1);
5
+if (!extension_loaded('pcntl')) {
6
+ print 'skip: Extension pcntl must be loaded.';
7
+}
8
--FILE--
9
<?php declare(strict_types=1);
10
$_SERVER['argv'][] = '--do-not-cache-result';
0 commit comments