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.

35 lines
762 B

3 years ago
  1. {
  2. "name": "brick/math",
  3. "description": "Arbitrary-precision arithmetic library",
  4. "type": "library",
  5. "keywords": [
  6. "Brick",
  7. "Math",
  8. "Arbitrary-precision",
  9. "Arithmetic",
  10. "BigInteger",
  11. "BigDecimal",
  12. "BigRational",
  13. "Bignum"
  14. ],
  15. "license": "MIT",
  16. "require": {
  17. "php": "^7.1 || ^8.0",
  18. "ext-json": "*"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  22. "php-coveralls/php-coveralls": "^2.2",
  23. "vimeo/psalm": "4.3.2"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Brick\\Math\\": "src/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "Brick\\Math\\Tests\\": "tests/"
  33. }
  34. }
  35. }