1
0
mirror of https://github.com/danog/math.git synced 2024-11-27 12:24:45 +01:00
math/composer.json
Benjamin Morel 49ea5a085e Reworked Travis build matrix
Travis now supports merged code coverage reports, so we do not need to merge them ourselves.
2015-05-22 13:39:59 +02:00

27 lines
578 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.6"
},
"require-dev": {
"phpunit/phpunit": "*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"Brick\\Math\\": "src/",
"Brick\\Math\\Tests\\": "tests/"
}
}
}