composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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://privatebin.info/",
  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://privatebin.info/codedoc/"
  13. },
  14. "require": {
  15. "php": "^5.4.0 || ^7.0",
  16. "paragonie/random_compat": "2.0.15",
  17. "yzalis/identicon": "1.1.0"
  18. },
  19. "require-dev": {
  20. "codacy/coverage": "dev-master",
  21. "codeclimate/php-test-reporter": "dev-master",
  22. "phpunit/phpunit": "^4.6 || ^5.0"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "PrivateBin\\": "lib/"
  27. }
  28. },
  29. "config": {
  30. "autoloader-suffix": "DontChange"
  31. }
  32. }