-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
62 lines (62 loc) · 1.6 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
60
61
62
{
"name": "samsara/fermat",
"type": "library",
"description": "A library providing math and statistics operations for numbers of arbitrary size.",
"keywords": ["math", "bigint", "large numbers", "numbers", "trigonometry", "arbitrary precision"],
"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/JordanRL/Fermat"
},
"authors": [
{
"name": "Jordan LeDoux",
"homepage": "https://github.com/JordanRL",
"role": "Developer"
}
],
"license": "GPL-2.0-or-later",
"require": {
"samsara/common": "^1",
"arokettu/random-polyfill": "*",
"php-ds/php-ds": "^1.1",
"php": ">=8.1",
"ext-gmp": "*",
"ext-bcmath": "*"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"php-decimal/stubs": "v1.1.0",
"samsara/roster": "^0.1",
"phpbench/phpbench": "^1",
"vimeo/psalm": "*",
"nunomaduro/phpinsights": "^2.6"
},
"suggest": {
"ext-ds": "*",
"ext-decimal": "*"
},
"autoload": {
"psr-4": {
"Samsara\\Fermat\\": "src/Samsara/Fermat/"
}
},
"autoload-dev": {
"psr-4": {
"Samsara\\Fermat\\": ["tests/Samsara/Fermat/", "tests-with-modules/Samsara/Fermat"]
}
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}