-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.63 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
{
"name": "aza/math",
"description": "AzaMath - Anizoptera CMF mathematic component. Arbitrary precision arithmetic (for huge integers; BCMath wrapper) and universal convertor between positional numeral systems (supported bases from 2 to 62 inclusive, and systems with custom alphabet; pure PHP realisation, can use GMP and core PHP functions for speed optimization).",
"keywords": [
"math", "mathematics", "arithmetic", "calculation",
"big", "huge", "number", "integer", "fraction", "bigint", "bignum",
"arbitrary", "precision",
"decimal", "base 36", "base 62",
"bcmath", "binary calculator", "gmp",
"positional", "radix", "base", "convert"
],
"homepage": "https://github.com/Anizoptera/Math",
"license": "MIT",
"support": {
"issues": "https://github.com/Anizoptera/Math/issues"
},
"authors": [
{"name": "Amal Samally", "email": "[email protected]", "homepage": "https://github.com/amal"},
{"name": "AzaGroup Members"}
],
"require": {
"php": ">=5.3.3"
},
"suggest": {
"ext-bcmath": "Install the BCMath (Binary Calculator Arbitrary Precision Mathematics) extension to work with arbitrary precision arithmetic operations.",
"ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up number systems conversions and arbitrary precision arithmetic operations.",
"aza/common": "Used in benchmark tests",
"aza/benchmark": "Used in benchmark tests",
"aza/phpgen": "Used for development code building"
},
"autoload": {
"psr-0": {
"Aza\\Components\\Math": ""
}
},
"target-dir": "Aza/Components/Math",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "dev"
}