Update PHP dependencies to fix security issues

This fix CVE-2013-5958 and also
1861e33fe0
This commit is contained in:
Adrien Crivelli 2018-11-11 18:21:31 +11:00
parent b3877e59e4
commit 2fce5c4706
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
4 changed files with 505 additions and 537 deletions

1029
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1082,11 +1082,11 @@ class Worksheet extends BIFFwriter
$link_type = pack('V', $link_type);
// Calculate the up-level dir count e.g.. (..\..\..\ == 3)
$up_count = preg_match_all("/\\.\\.\\\/", $dir_long, $useless);
$up_count = preg_match_all('/\\.\\.\\\\/', $dir_long, $useless);
$up_count = pack('v', $up_count);
// Store the short dos dir name (null terminated)
$dir_short = preg_replace("/\\.\\.\\\/", '', $dir_long) . "\0";
$dir_short = preg_replace('/\\.\\.\\\\/', '', $dir_long) . "\0";
// Store the long dir name as a wchar string (non-null terminated)
$dir_long = $dir_long . "\0";

View File

@ -2,7 +2,6 @@
namespace PhpOffice\PhpSpreadsheetTests\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Calculation\TextData;
use PhpOffice\PhpSpreadsheet\Shared\StringHelper;