Skip to content

Commit

Permalink
Readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
bsadnu committed Sep 4, 2018
1 parent ae31b90 commit 506e2da
Showing 1 changed file with 50 additions and 1 deletion.
51 changes: 50 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,50 @@
# The helpers box
The helpers box
===============================

[![Latest Stable Version](https://poser.pugx.org/bsadnu/helpers-box/v/stable)](https://packagist.org/packages/bsadnu/helpers-box)
[![Total Downloads](https://poser.pugx.org/bsadnu/helpers-box/downloads)](https://packagist.org/packages/bsadnu/helpers-box)
[![License](https://poser.pugx.org/bsadnu/helpers-box/license)](https://packagist.org/packages/bsadnu/helpers-box)

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](https://laravel.com/docs/5.7/helpers).

## Installation

Open a command console, enter your project directory and execute:

```console
$ composer require bsadnu/helpers-box
```

## Usage

Simply call static methods as follows:

```php
<?php

...

use Bsadnu\HBox\Arr;
use Bsadnu\HBox\Str;

...

class SomeClass
{
...

public function someMethod()
{
...

Arr::pluck($someArray, $value);

Str::camel($someString);

...
}

...
}
```

0 comments on commit 506e2da

Please sign in to comment.