1
0
mirror of https://github.com/danog/math.git synced 2024-11-30 04:19:31 +01:00
math/composer.json
2015-08-06 13:24:52 +02:00

28 lines
601 B
JSON

{
"name": "brick/math",
"description": "Arbitrary-precision arithmetic library",
"type": "library",
"keywords": [
"Brick",
"Math",
"Arbitrary-precision",
"Arithmetic",
"BigInteger",
"BigDecimal",
"BigRational"
],
"license": "MIT",
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"Brick\\Math\\": "src/",
"Brick\\Math\\Tests\\": "tests/"
}
}
}