composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "zendframework/zend-math",
  3. "description": " ",
  4. "license": "BSD-3-Clause",
  5. "keywords": [
  6. "zf2",
  7. "math"
  8. ],
  9. "homepage": "https://github.com/zendframework/zend-math",
  10. "autoload": {
  11. "psr-4": {
  12. "Zend\\Math\\": "src/"
  13. }
  14. },
  15. "require": {
  16. "php": "^5.5 || ^7.0"
  17. },
  18. "suggest": {
  19. "ext-bcmath": "If using the bcmath functionality",
  20. "ext-gmp": "If using the gmp functionality",
  21. "ircmaxell/random-lib": "Fallback random byte generator for Zend\\Math\\Rand if Mcrypt extensions is unavailable"
  22. },
  23. "minimum-stability": "dev",
  24. "prefer-stable": true,
  25. "extra": {
  26. "branch-alias": {
  27. "dev-master": "2.7-dev",
  28. "dev-develop": "2.8-dev"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "ZendTest\\Math\\": "test/"
  34. }
  35. },
  36. "require-dev": {
  37. "fabpot/php-cs-fixer": "1.7.*",
  38. "ircmaxell/random-lib": "~1.1",
  39. "phpunit/PHPUnit": "~4.0"
  40. }
  41. }