Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
},
"require": {
"php": ">=7.2.0",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-tokenizer": "*",
"ext-xmlwriter": "*"
Expand Down
1 change: 1 addition & 0 deletions requirements.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ function checkRequirements()

$requiredExtensions = array(
'tokenizer',
'libxml',
'xmlwriter',
'SimpleXML',
);
Expand Down
10 changes: 5 additions & 5 deletions scripts/BuildRequirementsCheckMatrix.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function getBuilds()
*/
private function getValidBuilds()
{
$extensions = ['minimal' => 'none, tokenizer, xmlwriter, SimpleXML'];
$extensions = ['minimal' => 'none, tokenizer, libxml, xmlwriter, SimpleXML'];

$builds = [];
foreach ($this->validPhp as $php) {
Expand Down Expand Up @@ -145,10 +145,10 @@ private function getInvalidPHPBuilds()
private function getMissingExtensionsBuilds()
{
$extensions = [
'missing tokenizer' => 'none, xmlwriter, SimpleXML',
'missing xmlwriter' => ':xmlwriter',
'missing SimpleXML' => ':SimpleXML',
'missing both XML exts' => 'none, tokenizer',
'missing tokenizer' => 'none, xmlwriter, SimpleXML',
'missing xmlwriter' => ':xmlwriter',
'missing SimpleXML' => ':SimpleXML',
'missing all XML exts' => 'none, tokenizer',
];

$builds = [];
Expand Down
Loading