-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "samsara/fermat-stats",
"type": "library",
"description": "A module for the Fermat math library which adds statistics function.",
"keywords": ["math", "bigint", "large numbers", "numbers", "stats", "statistics", "gaussian", "poisson"],
"license": "GPL-2.0-or-later",
"homepage": "https://jordanrl.github.io/Fermat/",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/JordanRL"
}
],
"support": {
"issues": "https://github.com/JordanRL/Fermat/issues",
"docs": "https://jordanrl.github.io/Fermat/",
"source": "https://github.com/SamsaraLabs/FermatStats"
},
"authors": [
{
"name": "Jordan LeDoux",
"homepage": "https://github.com/JordanRL",
"role": "Developer"
}
],
"require": {
"samsara/fermat": ">=v2.0"
},
"require-dev": {
"phpunit/phpunit": "9.*"
},
"autoload": {
"psr-4": {
"Samsara\\Fermat\\": "src/Samsara/Fermat/"
}
},
"autoload-dev": {
"psr-4": {
"Samsara\\Fermat\\": "tests/Samsara/Fermat/"
}
}
}