-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.26 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "nenglish7/lovell",
"type": "library",
"keywords": [
"php-library",
"libsodium-php",
"php7-0",
"php7-1",
"php7-2",
"secure-coding",
"php-security",
"php-encryption",
"password-hashing",
"sodium-library"
],
"description": "Lovell is the key to secure php applications. We use libsodium to provide modern cryptographic API to prevent side-channel attacks. This dependency requires the sodium extension.",
"homepage": "https://github.com/Nenglish7/Encryption",
"license": "MIT",
"authors": [
{
"name": "Nicholas English",
"email": "[email protected]",
"homepage": "https://github.com/Nenglish7"
}
],
"require": {
"php": "^5.6|^7",
"ext-sodium": "*"
},
"autoload": {
"psr-4": {
"Nenglish7\\Lovell\\": "./src"
},
"files": [
"./boot.php"
]
},
"require-dev": {
"phpunit/phpunit": "^5|^6"
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}