-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.13 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
{
"name" : "fab2s/math",
"description" : "A Base10 high precision math helper",
"type" : "library",
"authors" : [{
"name" : "Fabrice de Stefanis"
}],
"keywords" : [
"math",
"PHP",
"Simple",
"Base10",
"decimal",
"BcMath",
"HighPrecision",
"laravel"
],
"license" : [
"MIT"
],
"require" : {
"php": "^8.1",
"ext-bcmath": "*",
"fab2s/context-exception": "^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"laravel/pint": "^1.11",
"orchestra/testbench": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"fab2s\\Math\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"fab2s\\Math\\Tests\\": "tests"
}
},
"scripts": {
"post-update-cmd": [
"rm -rf .*.cache"
],
"post-install-cmd": [
"rm -rf .*.cache"
],
"fix": "@php vendor/bin/pint --config pint.json"
},
"suggest": {
"ext-gmp": "For faster Math::baseConvert up to base62"
}
}