1
0
mirror of https://github.com/danog/math.git synced 2024-11-27 12:24:45 +01:00
math/composer.json
2015-01-27 17:38:31 +01:00

28 lines
609 B
JSON

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