composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "paragonie/random-lib",
  3. "type": "library",
  4. "description": "A Library For Generating Secure Random Numbers",
  5. "keywords": ["random", "random-numbers", "random-strings", "cryptography"],
  6. "homepage": "https://github.com/ircmaxell/RandomLib",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Paragon Initiative Enterprises",
  11. "email": "security@paragonie.com",
  12. "homepage": "https://paragonie.com"
  13. },
  14. {
  15. "name": "Anthony Ferrara",
  16. "email": "ircmaxell@ircmaxell.com",
  17. "homepage": "http://blog.ircmaxell.com"
  18. }
  19. ],
  20. "require-dev": {
  21. "mikey179/vfsStream": "^1.6",
  22. "friendsofphp/php-cs-fixer": "^1.11",
  23. "phpunit/phpunit": "^4.8 || >=5.0.0 <5.4"
  24. },
  25. "require": {
  26. "ircmaxell/security-lib": "^1.1",
  27. "paragonie/random_compat": "^2",
  28. "paragonie/sodium_compat": "^1.3",
  29. "php": ">=5.3.2"
  30. },
  31. "autoload": {
  32. "psr-0": {
  33. "RandomLib": "lib"
  34. }
  35. },
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "1.1.x-dev"
  39. }
  40. }
  41. }