composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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": "^7.3 || ^8.0",
  28. "jdenticon/jdenticon": "1.0.2",
  29. "mlocati/ip-lib": "1.18.1",
  30. "yzalis/identicon": "2.0.0"
  31. },
  32. "suggest" : {
  33. "google/cloud-storage" : "1.41.0",
  34. "aws/aws-sdk-php" : "3.302.0"
  35. },
  36. "require-dev" : {
  37. "phpunit/phpunit" : "^9"
  38. },
  39. "autoload" : {
  40. "psr-4" : {
  41. "PrivateBin\\" : "lib/"
  42. }
  43. },
  44. "config" : {
  45. "autoloader-suffix" : "DontChange",
  46. "optimize-autoloader": true,
  47. "preferred-install": "dist",
  48. "sort-packages": true,
  49. "platform": {
  50. "php": "7.3"
  51. }
  52. }
  53. }