-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.18 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": "samsara/fermat-complex-numbers",
"type": "library",
"description": "A module for the Fermat math library which handles complex numbers.",
"keywords": ["math", "bigint", "large numbers", "numbers", "complex numbers", "imaginary numbers"],
"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/FermatComplexNumbers"
},
"authors": [
{
"name": "Jordan LeDoux",
"homepage": "https://github.com/JordanRL",
"role": "Developer"
}
],
"require": {
"samsara/fermat-coordinate-systems": "dev-master",
"samsara/fermat-algebra-expressions": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "9.*"
},
"autoload": {
"psr-4": {
"Samsara\\Fermat\\": "src/Samsara/Fermat/"
}
},
"autoload-dev": {
"psr-4": {
"Samsara\\Fermat\\": "tests/Samsara/Fermat/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}