composer.json 827 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "rncryptor/rncryptor",
  3. "type": "library",
  4. "description": "PHP implementation of RNCryptor",
  5. "keywords": ["encryption", "crypto", "rncryptor"],
  6. "homepage": "http://rncryptor.github.io",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Rob Napier",
  11. "email": "robnapier@gmail.com"
  12. },
  13. {
  14. "name": "Guysung Kim",
  15. "email": "guysung.kim@gmail.com"
  16. },
  17. {
  18. "name": "Curtis Farnham",
  19. "email": "curtisfarnham@gmail.com"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=5.5.0",
  24. "ext-mcrypt": "*",
  25. "sarciszewski/php-future": "0.4.*"
  26. },
  27. "require-dev": {
  28. "rncryptor/spec": "3.0.1",
  29. "phpunit/phpunit": "3.7.*"
  30. },
  31. "autoload": {
  32. "psr-0": {"RNCryptor": "lib/"}
  33. }
  34. }