forked from felixsand/PhPsst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 834 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
36
37
{
"name": "felixsand/phpsst",
"type": "library",
"description": "A PHP library for distributing (one time) passwords/secrets in a more secure way",
"keywords": [
"password",
"distribution",
"secret",
"safely"
],
"homepage": "https://github.com/felixsand/PhPsst",
"license": "MIT",
"authors": [
{
"name": "Felix Denbratt",
"email": "[email protected]",
"homepage": "https://github.com/felixsand"
}
],
"require": {
"php": "^8.1",
"illuminate/encryption": "~9",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "~9"
},
"suggest": {
"predis/predis": "Required when using the Redis storage option",
"ext-sqlite3": "Required when using the SQLite storage option"
},
"autoload": {
"psr-4": {
"": "src/"
}
}
}