diff --git a/composer.json b/composer.json index 0d7d5b0..7f2c3ac 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "kiwilan/php-ebook", "description": "PHP package to read metadata and extract covers from eBooks (.epub, .cbz, .cbr, .cb7, .cbt, .pdf) and audiobooks (.mp3, .m4a, .m4b, .flac, .ogg).", - "version": "1.3.51", + "version": "1.3.52", "keywords": [ "php", "ebook", @@ -34,7 +34,7 @@ ], "require": { "php": "^8.1", - "kiwilan/php-archive": "^1.5.1", + "kiwilan/php-archive": "^1.5.11", "kiwilan/php-audio": "^2.0.0", "kiwilan/php-xml-reader": "^0.2.31" }, diff --git a/tests/EpubTest.php b/tests/EpubTest.php index f4a80e9..5433cfd 100644 --- a/tests/EpubTest.php +++ b/tests/EpubTest.php @@ -147,7 +147,7 @@ it('can parse with good performances', function () { $ebook = Ebook::read(EPUB); - expect($ebook->execTime())->toBeLessThan(0.06); + expect($ebook->execTime())->toBeLessThan(0.3); })->skip(PHP_OS_FAMILY === 'Windows', 'Skip on Windows'); it('can parse epub without tags', function () {