PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Kacper Rowinski   PHP BCMath Extension   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP BCMath Extension
Add missing functions missing in BCMath
Author: By
Last change: New release (#43)

* feat: removed support for php 7.1 7.2 7.3, fixed typos, added code style checkers and phpstan to workflow, coverage 100%, remove travis and scrutinizer
Date: 1 year ago
Size: 1,240 bytes
 

Contents

Class file image Download
{ "name": "krowinski/bcmath-extended", "description": "Extends php BCMath lib for missing functions like floor, ceil, round, abs, min, max, rand for big numbers. Also wraps existing BCMath functions. (more http://php.net/manual/en/book.bc.php) Supports scientific notations", "keywords": [ "bc", "bcmath", "round", "ceil", "round", "php", "precision", "bignumber", "math", "rand", "floor", "abs", "arbitrary-precision", "complex-numbers", "scientific-notation" ], "type": "library", "require": { "php": "^7.4|^8.0", "ext-bcmath": "*" }, "require-dev": { "phpunit/phpunit": "^9.0", "phpstan/phpstan": "^1.9", "symplify/easy-coding-standard": "^11.1" }, "license": "MIT", "authors": [ { "name": "Kacper Rowi?ski", "email": "kacper.rowinski@gmail.com" } ], "autoload": { "psr-4": { "BCMathExtended\\": "src/BCMathExtended/" } }, "autoload-dev": { "psr-4": { "BCMathExtended\\Tests\\Unit\\": "tests/Unit/" } }, "scripts": { "cs:check": "ecs check", "cs:fix": "ecs check --fix", "phpstan:analyse": "phpstan analyse -cphpstan.neon" }, "minimum-stability": "stable" }