Skip to content
Merged
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
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"aws/aws-sdk-php": "^3.369",
"bantu/ini-get-wrapper": "v1.0.1",
"cweagans/composer-patches": "^1.7",
"deepdiver/zipstreamer": "^2.0.3",
"deepdiver/zipstreamer": "^3.0.1",
"deepdiver1975/tarstreamer": "^2.1.0",
"doctrine/dbal": "^3.10.4",
"egulias/email-validator": "^4.0.4",
Expand Down
16 changes: 8 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -310,22 +310,22 @@
},
{
"name": "deepdiver/zipstreamer",
"version": "v2.0.3",
"version_normalized": "2.0.3.0",
"version": "v3.0.1",
"version_normalized": "3.0.1.0",
"source": {
"type": "git",
"url": "https://github.com/DeepDiver1975/PHPZipStreamer.git",
"reference": "b9d1f53453a5736285facb723252ea2169dc472e"
"reference": "e860b893fce08a370886cba5ec0252c61b0b5e73"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/DeepDiver1975/PHPZipStreamer/zipball/b9d1f53453a5736285facb723252ea2169dc472e",
"reference": "b9d1f53453a5736285facb723252ea2169dc472e",
"url": "https://api.github.com/repos/DeepDiver1975/PHPZipStreamer/zipball/e860b893fce08a370886cba5ec0252c61b0b5e73",
"reference": "e860b893fce08a370886cba5ec0252c61b0b5e73",
"shasum": ""
},
"require": {
"ext-mbstring": "*",
"php": ">=7.1"
"php": ">=7.4"
},
"require-dev": {
"ext-xdebug": "*",
Expand All @@ -335,7 +335,7 @@
"suggest": {
"ext-http": ">=0.10"
},
"time": "2024-03-13T14:30:52+00:00",
"time": "2026-02-25T12:56:39+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand Down Expand Up @@ -382,7 +382,7 @@
],
"support": {
"issues": "https://github.com/DeepDiver1975/PHPZipStreamer/issues",
"source": "https://github.com/DeepDiver1975/PHPZipStreamer/tree/v2.0.3"
"source": "https://github.com/DeepDiver1975/PHPZipStreamer/tree/v3.0.1"
},
"funding": [
{
Expand Down
6 changes: 3 additions & 3 deletions composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
'dev_requirement' => false,
),
'deepdiver/zipstreamer' => array(
'pretty_version' => 'v2.0.3',
'version' => '2.0.3.0',
'reference' => 'b9d1f53453a5736285facb723252ea2169dc472e',
'pretty_version' => 'v3.0.1',
'version' => '3.0.1.0',
'reference' => 'e860b893fce08a370886cba5ec0252c61b0b5e73',
'type' => 'library',
'install_path' => __DIR__ . '/../deepdiver/zipstreamer',
'aliases' => array(),
Expand Down
8 changes: 6 additions & 2 deletions deepdiver/zipstreamer/src/Count64.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@
use ZipStreamer\Lib\Count64_64;
use ZipStreamer\Lib\Count64Base;

const INT64_HIGH_MAP = 0xffffffff00000000;
const INT64_LOW_MAP = 0x00000000ffffffff;
// Use bit shift operations instead of hex literals to avoid float representation in PHP 8.5+
/** @var int */
const INT64_HIGH_MAP = (0xffffffff << 32);
/** @var int */
const INT64_LOW_MAP = 0xffffffff;
/** @var int */
const INT_MAX_32 = 0xffffffff;

/**
Expand Down
Loading