composer.json 813 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "brick/math",
  3. "description": "Arbitrary-precision arithmetic library",
  4. "type": "library",
  5. "keywords": [
  6. "Brick",
  7. "Math",
  8. "Mathematics",
  9. "Arbitrary-precision",
  10. "Arithmetic",
  11. "BigInteger",
  12. "BigDecimal",
  13. "BigRational",
  14. "BigNumber",
  15. "Bignum",
  16. "Decimal",
  17. "Rational",
  18. "Integer"
  19. ],
  20. "license": "MIT",
  21. "require": {
  22. "php": "^8.1"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^10.1",
  26. "php-coveralls/php-coveralls": "^2.2",
  27. "vimeo/psalm": "6.8.8"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Brick\\Math\\": "src/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "Brick\\Math\\Tests\\": "tests/"
  37. }
  38. }
  39. }