Skip to content

Commit

Permalink
Merge pull request #1 from gauthierm/composer
Browse files Browse the repository at this point in the history
Add composer support.
  • Loading branch information
terrafrost committed Jan 26, 2014
2 parents 4804780 + 522bee8 commit 3310aac
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions composer.json
@@ -0,0 +1,22 @@
{
"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" : "LGPL-2.1+",
"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."
}
}

0 comments on commit 3310aac

Please sign in to comment.