-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
54 lines (54 loc) · 1.21 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
{
"name": "krowinski/bcmath-extended",
"description": "Extends php BCMath lib for missing functions like floor, ceil, round, abs, min, max, rand for big numbers. Also wraps existing BCMath functions. (more http://php.net/manual/en/book.bc.php) Supports scientific notations",
"keywords": [
"bc",
"bcmath",
"round",
"ceil",
"round",
"php",
"precision",
"bignumber",
"math",
"rand",
"floor",
"abs",
"arbitrary-precision",
"complex-numbers",
"scientific-notation"
],
"type": "library",
"require": {
"php": "^7.4|^8.0",
"ext-bcmath": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^1.9",
"symplify/easy-coding-standard": "^11.1"
},
"license": "MIT",
"authors": [
{
"name": "Kacper Rowiński",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BCMathExtended\\": "src/BCMathExtended/"
}
},
"autoload-dev": {
"psr-4": {
"BCMathExtended\\Tests\\Unit\\": "tests/Unit/"
}
},
"scripts": {
"cs:check": "ecs check",
"cs:fix": "ecs check --fix",
"phpstan:analyse": "phpstan analyse -cphpstan.neon"
},
"minimum-stability": "stable"
}