Remove bootstrap.php

This commit is contained in:
Jack Worman 2022-10-20 17:50:58 -05:00
parent e798c6052e
commit 7b557d46c5
3 changed files with 0 additions and 35 deletions

View File

@ -15354,14 +15354,6 @@
<code>$type</code>
</UnusedVariable>
</file>
<file src="../phpseclib/bootstrap.php">
<InvalidOperand occurrences="1">
<code>ini_get('mbstring.func_overload')</code>
</InvalidOperand>
<PossiblyFalseOperand occurrences="1">
<code>ini_get('mbstring.func_overload')</code>
</PossiblyFalseOperand>
</file>
<file src="../tests/Functional/Net/SFTPLargeFileTest.php">
<PropertyNotSetInConstructor occurrences="3">
<code>SFTPLargeFileTest</code>

View File

@ -75,9 +75,6 @@
"ext-dom": "Install the DOM extension to load XML formatted public keys."
},
"autoload": {
"files": [
"phpseclib/bootstrap.php"
],
"psr-4": {
"phpseclib3\\": "phpseclib/"
}

View File

@ -1,24 +0,0 @@
<?php
declare(strict_types=1);
/**
* Bootstrapping File for phpseclib
*
* composer isn't a requirement for phpseclib 2.0 but this file isn't really required
* either. it's a bonus for those using composer but if you're not phpseclib will
* still work
*
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
if (extension_loaded('mbstring')) {
// 2 - MB_OVERLOAD_STRING
// mbstring.func_overload is deprecated in php 7.2 and removed in php 8.0.
if (version_compare(PHP_VERSION, '8.0.0') < 0 && ini_get('mbstring.func_overload') & 2) {
throw new UnexpectedValueException(
'Overloading of string functions using mbstring.func_overload ' .
'is not supported by phpseclib.'
);
}
}