├── LICENSE ├── composer.json └── src ├── Decimal.php ├── DecimalConstants.php └── Errors ├── BigNumbersError.php ├── InfiniteInputError.php ├── NaNInputError.php └── NotImplementedError.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Spirit/php-bignumbers/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Spirit/php-bignumbers/HEAD/composer.json -------------------------------------------------------------------------------- /src/Decimal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Spirit/php-bignumbers/HEAD/src/Decimal.php -------------------------------------------------------------------------------- /src/DecimalConstants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Spirit/php-bignumbers/HEAD/src/DecimalConstants.php -------------------------------------------------------------------------------- /src/Errors/BigNumbersError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Spirit/php-bignumbers/HEAD/src/Errors/BigNumbersError.php -------------------------------------------------------------------------------- /src/Errors/InfiniteInputError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Spirit/php-bignumbers/HEAD/src/Errors/InfiniteInputError.php -------------------------------------------------------------------------------- /src/Errors/NaNInputError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Spirit/php-bignumbers/HEAD/src/Errors/NaNInputError.php -------------------------------------------------------------------------------- /src/Errors/NotImplementedError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Spirit/php-bignumbers/HEAD/src/Errors/NotImplementedError.php --------------------------------------------------------------------------------