composer.json 1.0 KB

123456789101112131415161718192021222324
  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-dev": {
  21. "codacy/coverage": "dev-master",
  22. "codeclimate/php-test-reporter": "dev-master"
  23. }
  24. }