-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
35 lines (35 loc) · 909 Bytes
/
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
{
"name": "hernandev/laravel-aead",
"description": "Advanced Encryption with Associated Data (AEAD) for Laravel.",
"keywords": ["laravel", "encryption", "cryptography", "aead", "aes-256-gcm", "chacha20", "poly1305", "xchacha20"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Diego Hernandes",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"LaravelAEAD\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaravelAEAD\\": "tests/"
}
},
"require": {
"php": ">=7.2.0",
"ext-sodium": "*",
"ext-json": "*",
"illuminate/support": "^5.6"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"mockery/mockery": "^1.0",
"symfony/var-dumper": "^4.0"
}
}