-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·59 lines (59 loc) · 1.49 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
51
52
53
54
55
56
57
58
59
{
"name": "virgil/crypto",
"description": "Virgil is a stack of security libraries (ECIES with Crypto Agility wrapped in Virgil Cryptogram) and all the necessary infrastructure to enable seamless, end-to-end encryption for any application, platform or device. See below for currently available languages and platforms. Get in touch with us to get preview access to our key infrastructure.",
"type": "standalone",
"keywords": [
"Virgil",
"Encryption",
"Decryption",
"Security",
"Authentication",
"Verification",
"Cryptography",
"Elliptic",
"Cross",
"Platform",
"Cross",
"Passwordless",
"ECIES",
"Virgil.Keys",
"Virgil.Pass",
"End-to-End",
"Perfect Forward Secrecy",
"PFS"
],
"homepage": "http://virgilsecurity.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Virgil Security, Inc",
"email": "support@virgilsecurity.com",
"homepage": "https://virgilsecurity.com/"
}
],
"require": {
"php": "^8.2",
"myclabs/php-enum": "^1.8",
"virgil/crypto-wrapper": "^0.17",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^11"
},
"autoload": {
"psr-4": {
"Virgil\\Crypto\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Virgil\\CryptoTests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"chmod +x ./vendor/virgil/crypto-wrapper/_extensions/setup.sh",
"./vendor/virgil/crypto-wrapper/_extensions/setup.sh -all -vendor"
]
}
}