This commit is contained in:
Tim Bendt
2025-11-25 00:16:35 -05:00
commit 6b9ef7ca55
6757 changed files with 1003748 additions and 0 deletions

152
system/vendor/pear/math_biginteger/package.xml vendored Executable file
View File

@@ -0,0 +1,152 @@
<?xml version="1.0"?>
<package version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>Math_BigInteger</name>
<channel>pear.php.net</channel>
<summary>Pure-PHP arbitrary precission integer arithmetic library</summary>
<description>
Supports base-2, base-10, base-16, and base-256 numbers. Uses the GMP or BCMath extensions, if available, and an internal implementation, otherwise.
</description>
<lead>
<name>Jim Wigginton</name>
<user>terrafrost</user>
<email>terrafrost@php.net</email>
<active>yes</active>
</lead>
<date>2016-04-12</date>
<version>
<release>1.0.3</release>
<api>1.0.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/mit-license.html">MIT</license>
<notes>
- Fix PHP7 constructor deprecation notice
</notes>
<contents>
<dir name="/">
<file name="Math/BigInteger.php" role="php" />
<file baseinstalldir="Math/BigInteger" name="demo/demo.php" role="php" />
<file baseinstalldir="Math/BigInteger" name="demo/benchmark.php" role="php" />
</dir>
</contents>
<dependencies>
<required>
<php>
<min>4.2</min>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
<extension>
<name>pcre</name>
</extension>
</required>
</dependencies>
<phprelease />
<changelog>
<release>
<version>
<release>1.0.0RC1</release>
<api>1.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2006-10-26</date>
<license uri="http://www.gnu.org/licenses/lgpl.html">LGPL</license>
<notes>Initial PEAR release.</notes>
</release>
<release>
<version>
<release>1.0.0RC2</release>
<api>1.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2006-11-16</date>
<license uri="http://www.gnu.org/licenses/lgpl.html">LGPL</license>
<notes>
Added bitwise_or(), bitwise_and(), bitwise_xor(), and bitwise_not()
</notes>
</release>
<release>
<version>
<release>1.0.0RC3</release>
<api>1.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2007-02-05</date>
<license uri="http://www.gnu.org/licenses/lgpl.html">LGPL</license>
<notes>
- Fix for bug #9654: In MODE_INTERNAL, modPow doesn't work occasionally
- Other bug fixes
</notes>
</release>
<release>
<version>
<release>1.0.0</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2010-05-26</date>
<license uri="http://www.gnu.org/licenses/lgpl.html">LGPL</license>
<notes>
- significant speed-ups
- new functions: gcd(), extendedGCD(), isPrime(), random(), randomPrime(), bitwise_leftRotate(), bitwise_rightRotate(), setPrecision(), toHex(), toBits() and equals()
- PHP_Compat is now optional. Store it in your include path if you require PHP4 support but otherwise it is unrequired.
</notes>
</release>
<release>
<version>
<release>1.0.2</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-02-11</date>
<license uri="http://www.opensource.org/licenses/mit-license.html">MIT</license>
<notes>
- (internal, bcmath) use OpenSSL, if available, for modular exponentiation
- (internal) use 64-bit ints, if available, and 64-bit floats, otherwise
- (all) improve random number generation
- change license to less restrictive MIT license
</notes>
</release>
<release>
<version>
<release>1.0.3</release>
<api>1.0.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2016-04-12</date>
<license uri="http://www.opensource.org/licenses/mit-license.html">MIT</license>
<notes>
- Fix PHP7 constructor deprecation notice
</notes>
</release>
</changelog>
</package>