composer.json 511 B

1234567891011121314
  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. "license":"zlib-acknowledgement",
  5. "require-dev": {
  6. "codacy/coverage": "dev-master",
  7. "codeclimate/php-test-reporter": "dev-master"
  8. },
  9. "autoload": {
  10. "psr-4": {
  11. "PrivateBin\\": "lib/"
  12. }
  13. }
  14. }