-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.43 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.43 KB
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
{
"name": "illegal/fluent-bcmath",
"description": "Fluent BCMath is a PHP package designed to simplify the usage of PHP's bcmath functions in a more fluid and intuitive way. With its expressive syntax and Laravel compatibility, it aims to improve the developer experience while working with arbitrary precision arithmetic operations.",
"type": "library",
"license": "MIT",
"keywords": [
"bcmath",
"php",
"laravel",
"arbitrary-precision",
"math",
"fluent",
"chainable"
],
"support": {
"source": "https://github.com/illegalstudio/fluent-bcmath",
"issues": "https://github.com/illegalstudio/fluent-bcmath",
"docs": "https://github.com/illegalstudio/fluent-bcmath/blob/main/README.md"
},
"authors": [
{
"name": "Vincenzo Petrucci",
"email": "vincenzo.petrucci@gmail.com",
"role": "Maintainer"
},
{
"name": "Mircha Emanuel D'Angelo",
"email": "mirchaemanuel@gmail.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-bcmath": "*"
},
"require-dev": {
"pestphp/pest": "^2.0"
},
"autoload": {
"psr-4": {
"Illegal\\FluentBCMath\\": "src/"
},
"files": [
"functions/fluent-bcmath.php"
]
},
"autoload-dev": {
"psr-4": {
"Illegal\\FluentBCMath\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}