1
0
Fork 0
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:
epriestley 2014-04-29 10:57:10 -07:00
parent bcdef099c2
commit 301c7d0a14

View file

@ -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