-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
35 lines (35 loc) · 902 Bytes
/
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
{
"name": "rtlopez/decimal",
"type": "library",
"description": "An object oriented immutable arbitrary-precision arithmetic library for PHP",
"keywords": ["decimal", "big decimal", "bignum", "numbers", "financial", "large numbers", "numeric", "gmp", "bcmath", "immutable", "money"],
"homepage": "https://github.com/rtlopez/decimal",
"authors": [{
"name": "rtlopez",
"email": "[email protected]",
"homepage": "https://github.com/rtlopez"
}],
"license": "MIT",
"require": {
"php": ">=5.3.0",
"ext-bcmath": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"phpstan/phpstan": "^0.12.90"
},
"scripts": {
"test": "vendor/bin/phpunit",
"analyze": "vendor/bin/phpstan analyze"
},
"autoload": {
"psr-4": {
"RtLopez\\": "src/RtLopez/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\RtLopez\\": "tests/"
}
}
}