-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.1 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
{
"name": "paragonie/easy-ecc",
"description": "Usabiliy Wrapper for mdanter/ecc",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "info@paragonie.com",
"homepage": "https://paragonie.com",
"role": "Development Team"
}
],
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"license": "ISC",
"autoload": {
"files": ["autoload-shim.php"],
"psr-4": {
"ParagonIE\\EasyECC\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"ParagonIE\\EasyECC\\Tests\\": "./tests"
}
},
"require": {
"php": "^7.1|^8",
"ext-gmp": "*",
"defuse/php-encryption": "^2.4",
"paragonie/ecc": "^2.3",
"paragonie/sodium_compat": "^1|^2",
"paragonie/constant_time_encoding": "^2.7|^3"
},
"require-dev": {
"phpunit/phpunit": "^7|^8|^9",
"vimeo/psalm": "^1|^3|^4|^5"
},
"scripts": {
"test": ["phpunit", "psalm"]
},
"support": {
"email": "security@paragonie.com",
"issues": "https://github.com/paragonie/ionizer/issues",
"source": "https://github.com/paragonie/ionizer"
}
}