composer.json 710 B

12345678910111213141516171819202122232425262728293031323334
  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": "^8.0"
  18. },
  19. "require-dev": {
  20. "phpunit/phpunit": "^9.0",
  21. "php-coveralls/php-coveralls": "^2.2",
  22. "vimeo/psalm": "5.0.0"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Brick\\Math\\": "src/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "Brick\\Math\\Tests\\": "tests/"
  32. }
  33. }
  34. }