composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "symfony/polyfill-ctype": "^1.31",
  31. "symfony/polyfill-php80": "^1.31",
  32. "yzalis/identicon": "2.0.0"
  33. },
  34. "suggest" : {
  35. "google/cloud-storage" : "1.44.0",
  36. "aws/aws-sdk-php" : "3.331.0"
  37. },
  38. "require-dev" : {
  39. "phpunit/phpunit" : "^9"
  40. },
  41. "autoload" : {
  42. "psr-4" : {
  43. "PrivateBin\\" : "lib/"
  44. }
  45. },
  46. "config" : {
  47. "autoloader-suffix" : "DontChange",
  48. "optimize-autoloader": true,
  49. "preferred-install": "dist",
  50. "sort-packages": true,
  51. "platform": {
  52. "php": "7.3"
  53. }
  54. }
  55. }