JulienBreux / phpunit-docker

DEPRECATED :package: Docker image to use PHPUnit as CLI.
https://hub.docker.com/r/phpunit/phpunit/
MIT License
47 stars 28 forks source link

Missing ext-simplexml and ext-fileinfo #71

Closed smcjones closed 6 years ago

smcjones commented 6 years ago

Both assertions in this test fail:

$this->assertTrue(function_exists('simplexml_load_file'));
$this->assertTrue(function_exists('mime_content_type'));

When I add ext-simplexml and ext-fileinfo and re-compile, it succeeds.

Similarly, would be nice to have ext-mysqli installed but I can just add that in a custom build.

JulienBreux commented 6 years ago

Hi @smcjones,

You can open a PR to add this missing exts ;)

BR

smcjones commented 6 years ago

Sure thing!

JulienBreux commented 6 years ago

Thx for contribution.