This library provides a number of static helper methods. At the moment it is a full copy of Laravel 5.7 Arr and Str helpers.
Open a command console, enter your project directory and execute:
$ composer require bsadnu/helpers-box
Simply call static methods as follows:
<?php
...
use Bsadnu\HBox\Arr;
use Bsadnu\HBox\Str;
...
class SomeClass
{
...
public function someMethod()
{
...
Arr::pluck($someArray, $value);
Str::camel($someString);
...
}
...
}