composer.json 868 B

12345678910111213141516171819202122232425262728293031323334
  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": "^7"
  26. },
  27. "require-dev": {
  28. "vimeo/psalm": "^1",
  29. "phpunit/phpunit": "4.*|5.*"
  30. },
  31. "suggest": {
  32. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  33. }
  34. }