1
0
mirror of https://github.com/danog/math.git synced 2024-11-27 04:14:40 +01:00
math/composer.json

27 lines
578 B
JSON
Raw Normal View History

2014-08-31 14:25:54 +02:00
{
"name": "brick/math",
2014-08-31 19:33:53 +02:00
"description": "Arbitrary-precision arithmetic library",
2014-08-31 14:25:54 +02:00
"type": "library",
"keywords": [
"Brick",
"Math",
"Arbitrary-precision",
"Arithmetic",
"BigInteger",
"BigDecimal"
],
"license": "MIT",
"require": {
2015-05-22 13:12:06 +02:00
"php": ">=5.6"
2014-08-31 14:25:54 +02:00
},
"require-dev": {
2014-08-31 16:42:11 +02:00
"phpunit/phpunit": "*",
"satooshi/php-coveralls": "dev-master"
2014-08-31 14:25:54 +02:00
},
"autoload": {
"psr-4": {
"Brick\\Math\\": "src/",
"Brick\\Math\\Tests\\": "tests/"
}
}
}