composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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": ["private", "secure", "end-to-end-encrypted", "e2e", "paste", "pastebin", "zero", "zero-knowledge", "encryption", "encrypted", "AES"],
  6. "homepage": "https://github.com/PrivateBin",
  7. "license":"zlib-acknowledgement",
  8. "support": {
  9. "issues": "https://github.com/PrivateBin/PrivateBin/issues",
  10. "wiki": "https://github.com/PrivateBin/PrivateBin/wiki",
  11. "source": "https://github.com/PrivateBin/PrivateBin",
  12. "docs": "https://zerobin.dssr.ch/documentation/"
  13. },
  14. "repositories": [
  15. {
  16. "type": "vcs",
  17. "url": "https://github.com/PrivateBin/PrivateBin"
  18. }
  19. ],
  20. "require": {
  21. "php": "^5.3 || ^7.0",
  22. "yzalis/identicon": "^1.1"
  23. },
  24. "require-dev": {
  25. "codacy/coverage": "dev-master",
  26. "codeclimate/php-test-reporter": "dev-master"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "PrivateBin\\": "lib/"
  31. }
  32. },
  33. "config": {
  34. "autoloader-suffix": "DontChange"
  35. }
  36. }