composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name" : "privatebin/privatebin",
  3. "description" : "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted in the browser using 256 bit AES in Galois Counter mode (GCM).",
  4. "type" : "project",
  5. "keywords" : [
  6. "private",
  7. "secure",
  8. "end-to-end-encrypted",
  9. "e2e",
  10. "paste",
  11. "pastebin",
  12. "zero",
  13. "zero-knowledge",
  14. "encryption",
  15. "encrypted",
  16. "AES"
  17. ],
  18. "homepage" : "https://privatebin.info/",
  19. "license" : "zlib-acknowledgement",
  20. "support" : {
  21. "issues" : "https://github.com/PrivateBin/PrivateBin/issues",
  22. "wiki" : "https://github.com/PrivateBin/PrivateBin/wiki",
  23. "source" : "https://github.com/PrivateBin/PrivateBin",
  24. "docs" : "https://privatebin.info/codedoc/"
  25. },
  26. "require" : {
  27. "php" : "^5.6.0 || ^7.0 || ^8.0",
  28. "paragonie/random_compat" : "2.0.21",
  29. "yzalis/identicon" : "2.0.0",
  30. "mlocati/ip-lib" : "1.18.0"
  31. },
  32. "suggest" : {
  33. "google/cloud-storage" : "1.26.1",
  34. "aws/aws-sdk-php" : "3.239.0"
  35. },
  36. "require-dev" : {
  37. "phpunit/phpunit" : "^4.6 || ^5.0"
  38. },
  39. "autoload" : {
  40. "psr-4" : {
  41. "PrivateBin\\" : "lib/"
  42. }
  43. },
  44. "config" : {
  45. "autoloader-suffix" : "DontChange"
  46. }
  47. }