-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
49 lines (49 loc) · 1.28 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
{
"name": "phpseclib/bcmath_compat",
"description": "PHP 5.x-8.x polyfill for bcmath extension",
"keywords": [
"bcmath",
"math",
"biginteger",
"bigdecimal",
"polyfill"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Jim Wigginton",
"email": "terrafrost@php.net",
"homepage": "http://phpseclib.sourceforge.net"
}
],
"support": {
"issues": "https://github.com/phpseclib/bcmath_compat/issues",
"email": "terrafrost@php.net",
"source": "https://github.com/phpseclib/bcmath_compat"
},
"require": {
"phpseclib/phpseclib": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^10.5|^11.1",
"squizlabs/php_codesniffer": "^3.0"
},
"suggest": {
"ext-gmp": "Will enable faster math operations"
},
"autoload": {
"files": ["lib/bcmath.php"],
"psr-4": {
"bcmath_compat\\": "src"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"provide": {
"ext-bcmath": "8.1.0"
}
}