composer.json 913 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "paragonie/random_compat",
  3. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  4. "keywords": [
  5. "csprng",
  6. "random",
  7. "polyfill",
  8. "pseudorandom"
  9. ],
  10. "license": "MIT",
  11. "type": "library",
  12. "authors": [
  13. {
  14. "name": "Paragon Initiative Enterprises",
  15. "email": "security@paragonie.com",
  16. "homepage": "https://paragonie.com"
  17. }
  18. ],
  19. "support": {
  20. "issues": "https://github.com/paragonie/random_compat/issues",
  21. "email": "info@paragonie.com",
  22. "source": "https://github.com/paragonie/random_compat"
  23. },
  24. "require": {
  25. "php": ">=5.2.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "4.*|5.*"
  29. },
  30. "suggest": {
  31. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  32. },
  33. "autoload": {
  34. "files": [
  35. "lib/random.php"
  36. ]
  37. }
  38. }