forked from Coder-Spirit/php-bignumbers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 797 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
{
"name": "litipk/php-bignumbers",
"description": "An opensource library to handle immutable big numbers inside PHP applications",
"keywords": ["bignum", "number", "decimal", "gmp", "bcmath"],
"license": "MIT",
"authors": [
{
"name": "Andrés Correa Casablanca",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "http://github.com/Litipk/php-bignumbers/issues",
"source": "http://github.com/Litipk/php-bignumbers"
},
"require": {
"php": ">=7.0",
"ext-bcmath": "*"
},
"require-dev": {
"psy/psysh": "^0.8",
"phpunit/phpunit": "~6.0",
"squizlabs/php_codesniffer": "^2.8",
"codeclimate/php-test-reporter": "^0.4"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Litipk\\BigNumbers\\": "src/"
}
}
}