You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
818 B
39 lines
818 B
{ |
|
"name": "brick/math", |
|
"description": "Arbitrary-precision arithmetic library", |
|
"type": "library", |
|
"keywords": [ |
|
"Brick", |
|
"Math", |
|
"Mathematics", |
|
"Arbitrary-precision", |
|
"Arithmetic", |
|
"BigInteger", |
|
"BigDecimal", |
|
"BigRational", |
|
"BigNumber", |
|
"Bignum", |
|
"Decimal", |
|
"Rational", |
|
"Integer" |
|
], |
|
"license": "MIT", |
|
"require": { |
|
"php": "^8.2" |
|
}, |
|
"require-dev": { |
|
"phpunit/phpunit": "^11.5", |
|
"php-coveralls/php-coveralls": "^2.2", |
|
"phpstan/phpstan": "2.1.22" |
|
}, |
|
"autoload": { |
|
"psr-4": { |
|
"Brick\\Math\\": "src/" |
|
} |
|
}, |
|
"autoload-dev": { |
|
"psr-4": { |
|
"Brick\\Math\\Tests\\": "tests/" |
|
} |
|
} |
|
}
|
|
|