lstrojny/hmmmath
PHP math utility package providing common numeric helpers and algorithms. Useful for calculations, statistics-like operations, and reusable math functions in Laravel or any PHP project. Lightweight, dependency-friendly, and easy to integrate into existing codebases.
Delicious math component for PHP
<?php
use hmmmath\Fibonacci\FibonacciFactory;
foreach (FibonacciFactory::sequence(0, 1) as $number) {
var_dump($number);
}
Will output:
int(0)
int(1)
int(1)
int(2)
int(3)
int(5)
int(8)
int(13)
int(21)
int(34)
int(55)
int(89)
int(144)
...
How can I help you explore Laravel packages today?