-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1 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
{
"name": "bardoqi/bigmath",
"description": "A PHP library to work with big integers and big decimals in most easy way.",
"type": "library",
"keywords": [
"phpmath",
"bigmath",
"biginteger",
"bigdecimal",
"bigcomplex",
"integer",
"math",
"php7"
],
"homepage": "https://github.com/BardoQi/BigMath",
"require": {
"php": "~7.0",
"ext-gmp": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.6",
"squizlabs/php_codesniffer": "^2.7"
},
"license": "MIT",
"authors": [
{
"name": "Bardo Qi",
"email": "bardoqi@gmail.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"BardoQi\\BigMath\\": "src/"
},
"files":[
"/src/funcBInt.php",
"/src/funcBDec.php",
"/src/funcBICom.php",
"/src/funcBDCom.php"
]
}
}