composer.json 897 B

12345678910111213141516171819202122232425262728293031323334353637
  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. "pseudorandom"
  8. ],
  9. "license": "MIT",
  10. "type": "library",
  11. "authors": [
  12. {
  13. "name": "Paragon Initiative Enterprises",
  14. "email": "security@paragonie.com",
  15. "homepage": "https://paragonie.com"
  16. }
  17. ],
  18. "support": {
  19. "issues": "https://github.com/paragonie/random_compat/issues",
  20. "email": "info@paragonie.com",
  21. "source": "https://github.com/paragonie/random_compat"
  22. },
  23. "require": {
  24. "php": ">=5.2.0"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "4.*|5.*"
  28. },
  29. "suggest": {
  30. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  31. },
  32. "autoload": {
  33. "files": [
  34. "lib/random.php"
  35. ]
  36. }
  37. }