composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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.0 || ^7.0",
  22. "paragonie/random_compat": "2.0.4",
  23. "yzalis/identicon": "1.1.0"
  24. },
  25. "require-dev": {
  26. "codacy/coverage": "dev-master",
  27. "codeclimate/php-test-reporter": "dev-master"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "PrivateBin\\": "lib/"
  32. }
  33. },
  34. "config": {
  35. "autoloader-suffix": "DontChange"
  36. }
  37. }