-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
50 lines (50 loc) · 1.59 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": "virgil/purekit",
"description": "Virgil Security introduces an implementation of the Password-Hardened Encryption (PHE) protocol that provides developers with a technology to protect users passwords from offline/online attacks and make stolen passwords useless even if your database has been compromised.",
"keywords": [],
"homepage": "https://passw0rd.io/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Virgil Security, Inc",
"email": "[email protected]",
"homepage": "https://virgilsecurity.com"
}
],
"require": {
"php": "^8.2",
"vlucas/phpdotenv": "^5.6",
"guzzlehttp/guzzle": "^7.8",
"google/protobuf": "^3.6.1",
"myclabs/php-enum": "^1.8",
"virgil/crypto": "^6.3",
"ext-json": "*",
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": "^11"
},
"autoload": {
"psr-4": {
"Virgil\\PureKit\\": "src",
"src\\": "src/Core/Protobuf/build/Purekit",
"GPBMetadata\\": "src/Protobuf/build/GPBMetadata",
"Purekit\\": "src/Protobuf/build/Purekit",
"PurekitV3Client\\": "src/Protobuf/build/PurekitV3Client",
"PurekitV3Crypto\\": "src/Protobuf/build/PurekitV3Crypto",
"PurekitV3Grant\\": "src/Protobuf/build/PurekitV3Grant",
"PurekitV3Storage\\": "src/Protobuf/build/PurekitV3Storage"
}
},
"autoload-dev": {
"psr-4": {
"Virgil\\PureKitTests\\": "tests"
}
},
"scripts": {
"post-install-cmd": [
"chmod +x ./vendor/virgil/crypto-wrapper/_extensions/setup.sh",
"./vendor/virgil/crypto-wrapper/_extensions/setup.sh -all -vendor"
]
}
}