]> git.mxchange.org Git - friendica.git/blob - vendor/defuse/php-encryption/composer.json
Add defuse/php-encryption 2.0 to Composer dependencies
[friendica.git] / vendor / defuse / php-encryption / composer.json
1 {
2     "name": "defuse/php-encryption",
3     "description": "Secure PHP Encryption Library",
4     "license": "MIT",
5     "keywords": ["security", "encryption", "AES", "openssl", "cipher", "cryptography", "symmetric key cryptography", "crypto", "encrypt", "authenticated encryption"],
6     "authors": [
7         {
8             "name": "Taylor Hornby",
9             "email": "taylor@defuse.ca",
10             "homepage": "https://defuse.ca/"
11         },
12         {
13             "name": "Scott Arciszewski",
14             "email": "info@paragonie.com",
15             "homepage": "https://paragonie.com"
16         }
17     ],
18     "autoload": {
19         "psr-4": {
20             "Defuse\\Crypto\\": "src"
21         }
22     },
23     "require": {
24         "paragonie/random_compat": "~2.0",
25         "ext-openssl": "*",
26         "php":  ">=5.4.0"
27     },
28     "require-dev": {
29         "phpunit/phpunit": "^4|^5",
30         "nikic/php-parser": "^2.0|^3.0"
31     },
32     "bin": [
33         "bin/generate-defuse-key"
34     ]
35 }