paste.chapril.org-privatebin/composer.json

33 lines
1.2 KiB
JSON
Raw Normal View History

{
2016-07-11 14:15:20 +02:00
"name": "privatebin/privatebin",
2016-07-19 13:05:07 +02:00
"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).",
2016-07-23 09:06:48 +02:00
"type": "project",
2016-07-23 09:26:00 +02:00
"keywords": ["private", "secure", "end-to-end-encrypted", "e2e", "paste", "pastebin", "zero", "zero-knowledge", "encryption", "encrypted", "AES"],
"homepage": "https://privatebin.info/",
"license":"zlib-acknowledgement",
2016-07-23 09:06:48 +02:00
"support": {
"issues": "https://github.com/PrivateBin/PrivateBin/issues",
"wiki": "https://github.com/PrivateBin/PrivateBin/wiki",
"source": "https://github.com/PrivateBin/PrivateBin",
"docs": "https://privatebin.info/codedoc/"
2016-07-23 09:06:48 +02:00
},
"require": {
2017-03-24 19:20:34 +01:00
"php": "^5.4.0 || ^7.0",
"paragonie/random_compat": "2.0.15",
"yzalis/identicon": "1.1.0"
2016-07-23 09:18:34 +02:00
},
"require-dev": {
"codacy/coverage": "dev-master",
"codeclimate/php-test-reporter": "dev-master",
"phpunit/phpunit": "^4.6 || ^5.0"
2016-07-21 17:09:48 +02:00
},
"autoload": {
"psr-4": {
"PrivateBin\\": "lib/"
}
2016-08-04 16:08:16 +02:00
},
"config": {
"autoloader-suffix": "DontChange"
}
}