1
0

composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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.4.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. "phpunit/phpunit": "^4.6 || ^5.0"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "PrivateBin\\": "lib/"
  33. }
  34. },
  35. "config": {
  36. "autoloader-suffix": "DontChange"
  37. }
  38. }