├── .github └── workflows │ └── ci.yml ├── LICENSE.md ├── README.md ├── composer.json ├── lib └── bcmath.php └── src └── BCMath.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpseclib/bcmath_compat/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpseclib/bcmath_compat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpseclib/bcmath_compat/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpseclib/bcmath_compat/HEAD/composer.json -------------------------------------------------------------------------------- /lib/bcmath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpseclib/bcmath_compat/HEAD/lib/bcmath.php -------------------------------------------------------------------------------- /src/BCMath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpseclib/bcmath_compat/HEAD/src/BCMath.php --------------------------------------------------------------------------------