The cineman Workbench provides helpful utils and tools for the daily developer life.
Check out the Documentation.
The workbench is available on packagegist.
$ composer require cineman/workbench
To easier and faster access the workbench tools you can alias the classes to the global namespace:
foreach(['Str', 'Arr'] as $tool)
{
class_alias("\\Workbench\\" . $tool, "\\" . $tool);
}
Warning: If you are using a framework like laravel theses class names might already been reserved!