Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added pcntl to requirements check #19780

Merged
merged 3 commits into from
Sep 22, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions framework/requirements/requirements.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,12 @@
'memo' => 'When <a href="https://www.yiiframework.com/doc-2.0/yii-validators-ipvalidator.html#$expandIPv6-detail">IpValidator::expandIPv6</a>
property is set to <code>true</code>, PHP must support IPv6 protocol stack. Currently PHP constant <code>AF_INET6</code> is not defined
and IPv6 is probably unsupported.'
),
array(
'name' => 'pcntl',
'mandatory' => false,
'condition' => extension_loaded('pcntl'),
'by' => '<a href="https://www.php.net/manual/de/book.pcntl.php">Process Control</a>',
'memo' => 'Recommended for yii2-queue CLI operations'

Check warning on line 120 in framework/requirements/requirements.php

View check run for this annotation

Codecov / codecov/patch

framework/requirements/requirements.php#L114-L120

Added lines #L114 - L120 were not covered by tests
)
);
Loading