-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
49 lines (49 loc) · 1.11 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
{
"name": "mrdebug/lara-file-encrypter",
"description": "LaraFileEncrypter: A Laravel package enabling secure and seamless management of encrypted files without the need for persistent key storage.",
"license": "MIT",
"keywords": [
"laravel-package",
"crud-generator",
"laravel-file-encrypter",
"composer-package",
"laravel",
"laravel10",
"encrypt",
"decrypt",
"encryption",
"decryption",
"file encryption",
"security",
"secure file management",
"password-based encryption",
"file protection"
],
"authors": [
{
"name": "Jonathan Escarem",
"email": "jonathan@labo-dev.fr"
}
],
"require":
{
"php": ">=8.0.0"
},
"autoload":
{
"psr-4":
{
"Mrdebug\\LaraFileEncrypter\\": "src/"
}
},
"extra":
{
"laravel":
{
"providers":
[
"Mrdebug\\LaraFileEncrypter\\LaraFileEncrypterServiceProvider"
]
}
}
}