mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-20 03:31:10 +01:00
Require the "ctype" extension explicitly
Summary: Fixes T4916. Although every normal build of PHP has this in the core, at least one distribution which users could reasonably encounter does not. Test Plan: Changed string to "ctypex", got setup warning. Changed to "ctype", got no warning. Reviewers: hach-que, btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T4916 Differential Revision: https://secure.phabricator.com/D8896
This commit is contained in:
parent
bcdef099c2
commit
301c7d0a14
1 changed files with 1 additions and 0 deletions
|
@ -16,6 +16,7 @@ final class PhabricatorSetupCheckExtensions extends PhabricatorSetupCheck {
|
|||
'openssl',
|
||||
'mbstring',
|
||||
'iconv',
|
||||
'ctype',
|
||||
|
||||
// There is a chance we might not need this, but some configurations (like
|
||||
// OAuth or Amazon SES) will require it. Just mark it 'required' since
|
||||
|
|
Loading…
Reference in a new issue