-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 846 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
{
"name": "4cm/crypto",
"type": "library",
"description": "A two-way encryption method for PHP.",
"keywords": ["php", "encryption", "security"],
"homepage": "https://4cm.com/",
"license": "MIT",
"authors": [
{
"name": "John Abela",
"homepage": "https://johnabela.com",
"role": "Developer"
},
{
"name": "4CM Network",
"email": "support@4cm.com",
"homepage": "https://4cm.com/",
"role": "Provider"
}
],
"support": {
"email": "support@4cm.com",
"source": "https://github.com/4cm/crypto/",
"issues": "https://github.com/4cm/crypto/issues",
"docs": "https://github.com/4cm/crypto/wiki"
},
"readme": "https://github.com/4cm/crypto/README.md",
"require": {
"php": ">=7.2.0",
"ext-sodium": "*"
},
"minimum-stability": "stable",
"autoload": {
"files": ["src/crypto.php"]
}
}