Skip to content

Commit

Permalink
Config: Add simplexml to required PHP extensions (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
VerifiedJoseph authored Oct 8, 2023
1 parent e6726ce commit 82bf26f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Configuration
private static string $minPhpVersion = '8.0.0';

/** @var array<int, string> $extensions Required PHP extensions */
private static array $extensions = ['curl', 'json', 'mbstring'];
private static array $extensions = ['curl', 'json', 'mbstring', 'simplexml'];

/** @var int $mkdirMode mkdir() access mode */
private static int $mkdirMode = 0775;
Expand Down

0 comments on commit 82bf26f

Please sign in to comment.