StocksNew/vendor/brick/math/composer.json

40 lines
814 B
JSON
Raw Normal View History

2024-08-27 12:03:06 +00:00
{
"name": "brick/math",
"description": "Arbitrary-precision arithmetic library",
"type": "library",
"keywords": [
"Brick",
"Math",
2024-09-04 06:37:04 +00:00
"Mathematics",
2024-08-27 12:03:06 +00:00
"Arbitrary-precision",
"Arithmetic",
"BigInteger",
"BigDecimal",
"BigRational",
2024-09-04 06:37:04 +00:00
"BigNumber",
"Bignum",
"Decimal",
"Rational",
"Integer"
2024-08-27 12:03:06 +00:00
],
"license": "MIT",
"require": {
2024-09-04 06:37:04 +00:00
"php": "^8.1"
2024-08-27 12:03:06 +00:00
},
"require-dev": {
2024-09-04 06:37:04 +00:00
"phpunit/phpunit": "^10.1",
2024-08-27 12:03:06 +00:00
"php-coveralls/php-coveralls": "^2.2",
2024-09-04 06:37:04 +00:00
"vimeo/psalm": "5.16.0"
2024-08-27 12:03:06 +00:00
},
"autoload": {
"psr-4": {
"Brick\\Math\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brick\\Math\\Tests\\": "tests/"
}
}
}