-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
45 lines (45 loc) · 1.07 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
{
"name" : "teqneers/shamir",
"description" : "This is Shamir's Shared Secret implementation in PHP. It allows you to create shared secrets using the PHP classes or the CLI interface.",
"minimum-stability" : "stable",
"type" : "library",
"license" : "MIT",
"authors" : [
{
"name" : "Stefan Gehrig",
"email" : "gehrig@teqneers.de",
"homepage" : "https://teqneers.de/"
},
{
"name" : "Oliver Müller",
"email" : "mueller@teqneers.de",
"homepage" : "https://teqneers.de/"
}
],
"require" : {
"php" : ">=8.1",
"symfony/console" : "^5.0 || ^6.0 || ^7.0",
"ext-bcmath" : "*"
},
"suggest" : {
"ext-openssl" : "For using its random generator instead of PHP one"
},
"config" : {
"sort-packages" : true
},
"require-dev" : {
"phpunit/phpunit" : "^10.5",
"roave/security-advisories" : "dev-master",
"scrutinizer/ocular" : "dev-master"
},
"autoload" : {
"psr-4" : {
"TQ\\Shamir\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"TQ\\Shamir\\Tests\\" : "tests/"
}
}
}