From 37e7b6f8c8c6932d0fb809d4f91153b81b24c699 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 22 Sep 2020 08:07:14 +0200 Subject: update to 1.5.0 add patch for test suite from upstream and from https://github.com/thephpleague/mime-type-detection/pull/3 open https://github.com/thephpleague/mime-type-detection/pull/4 phpunit 9 switch to phpunit9 --- 3.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 3.patch (limited to '3.patch') diff --git a/3.patch b/3.patch new file mode 100644 index 0000000..473584e --- /dev/null +++ b/3.patch @@ -0,0 +1,22 @@ +From 4ce57906fee375c3cd1bb86942d8df991982eb53 Mon Sep 17 00:00:00 2001 +From: Remi Collet +Date: Tue, 22 Sep 2020 07:53:33 +0200 +Subject: [PATCH] Fix test failure with 8.0.0beta4 + +--- + src/FinfoMimeTypeDetectorTest.php | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/FinfoMimeTypeDetectorTest.php b/src/FinfoMimeTypeDetectorTest.php +index 9f6c91b..606ecaa 100644 +--- a/src/FinfoMimeTypeDetectorTest.php ++++ b/src/FinfoMimeTypeDetectorTest.php +@@ -71,7 +71,7 @@ public function detecting_from_a_file_location(): void + { + $mimeType = $this->detector->detectMimeTypeFromFile(__DIR__.'/../test_files/flysystem.svg'); + +- $this->assertEquals('image/svg', $mimeType); ++ $this->assertStringStartsWith('image/svg', $mimeType); + } + + /** -- cgit