1
0

composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name" : "privatebin/privatebin",
  3. "description" : "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of stored 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.4 || ^8.0",
  28. "jdenticon/jdenticon": "2.0.0",
  29. "mlocati/ip-lib": "1.22.0",
  30. "symfony/polyfill-php80": "1.34.0",
  31. "yzalis/identicon": "2.0.0"
  32. },
  33. "suggest" : {
  34. "google/cloud-storage" : "1.45.0",
  35. "aws/aws-sdk-php" : "3.336.2"
  36. },
  37. "require-dev" : {
  38. "phpunit/phpunit" : "^9"
  39. },
  40. "autoload" : {
  41. "psr-4" : {
  42. "PrivateBin\\" : "lib/"
  43. }
  44. },
  45. "config" : {
  46. "audit": {
  47. "ignore": {
  48. "CVE-2025-45769": "disputed on the basis that key lengths are expected to be set by an application, not by this library"
  49. }
  50. },
  51. "autoloader-suffix" : "DontChange",
  52. "optimize-autoloader": true,
  53. "preferred-install": "dist",
  54. "sort-packages": true,
  55. "platform": {
  56. "php": "7.4"
  57. }
  58. }
  59. }