├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── src └── Sum.php └── tests └── SumTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | *.cache 4 | *.lock 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazububu/sum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazububu/sum/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazububu/sum/HEAD/composer.json -------------------------------------------------------------------------------- /src/Sum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazububu/sum/HEAD/src/Sum.php -------------------------------------------------------------------------------- /tests/SumTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazububu/sum/HEAD/tests/SumTest.php --------------------------------------------------------------------------------