lockfile again

This commit is contained in:
Tim Bendt
2025-11-26 11:50:55 -05:00
parent af3c23cb6e
commit 6ceecaa69e
4461 changed files with 641349 additions and 10 deletions

View File

@@ -0,0 +1,37 @@
{
"name": "pear/math_biginteger",
"description": "Pure-PHP arbitrary precission integer arithmetic library. If GMP or BCMath are available they are used.",
"type": "library",
"keywords": [
"integer",
"arbitrary",
"precision",
"bcmath",
"gmp"
],
"homepage": "https://github.com/pear/Math_BigInteger",
"license": "MIT",
"authors": [
{
"name": "Jim Wigginton",
"email": "terrafrost@php.net"
}
],
"require": {
"php": ">=4.2.0",
"ext-pcre": "*"
},
"suggest": {
"ext-bcmath": "Allows using the BCMath extension internally for computation. Faster than native implementation.",
"ext-gmp": "Allows using the GNU Multiple Precision extension internally for computation. If you are doing a lot of computation this is the recommended extension."
},
"autoload": {
"psr-0": {
"Math_": "./"
}
},
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Math_BigInteger",
"source": "https://github.com/pear/Math_BigInteger"
}
}