composer.json 645 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "mollie/polyfill-libsodium",
  3. "description": "A polyfill package to transition from the libsodium php extension to the sodium extension. Which is included in PHP 7.2",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Martijn Smit",
  9. "email": "smit@mollie.com"
  10. },
  11. {
  12. "name": "Willem Stuursma-Ruwen",
  13. "email": "willem@mollie.com"
  14. }
  15. ],
  16. "autoload": {
  17. "files": ["./bootstrap.php"]
  18. },
  19. "require": {
  20. "php": ">=7.0.0"
  21. },
  22. "suggest": {
  23. "ext-sodium": "The new sodium php extension"
  24. }
  25. }