-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
48 lines (48 loc) · 1.48 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
{
"name": "ionux/rapim",
"description": "This project is a native Rich Arbitrary Precision Integer Mathematics Library implementation for PHP.",
"keywords": ["rapim","math","arbitrary","precision","integer","mathematics","algorithm","number","karatsuba","fft","multiplication","addition","division","subtraction","modulo","prime","coprime"],
"homepage": "https://github.com/ionux/RichArbitraryPrecisionIntegerMath",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Rich Morgan",
"email": "[email protected]",
"role": "Creator and Lead Developer"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/ionux/RichArbitraryPrecisionIntegerMath.git"
}
],
"support": {
"issues": "https://github.com/ionux/RichArbitraryPrecisionIntegerMath/issues",
"email": "[email protected]",
"source": "https://github.com/ionux/RichArbitraryPrecisionIntegerMath"
},
"autoload": {
"psr-4": {
"RAPIM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RAPIM\\": "tests/"
}
},
"require": {
"php": ">=5.6.0",
"ext-bcmath": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"ext-gmp": "*"
},
"suggest": {
"ext-gmp": "Highest performing math extension and preferred for this library's mathematical calculations."
}
}