mossengine/helpersarray

A PHP sub library for the Mossengine/Helper library that provides Array helper functions
1,842
Install
composer require mossengine/helpersarray
Latest Version:1.0.2
PHP:>=7.0
License:MIT
Last Updated:Jul 4, 2021
Links: GitHub  ·  Packagist
Maintainer: brenmoss

About

This library can be used on it's own, however, it is intended to be used with the Mossengine/Helper library.

There is a group of Array type classes with single methods within that single out logic only needed for the given use, you can call them directly or using the Mossgnein Helper you can call into them simply without needing to use them in your project.

Installation

Using composer to install

$ composer require mossengine/helpersarray

Adding to package.json

{
    "require": {
        "mossengine/helpersarray": "~1.0.0"
    }
}

Usage

Call helper method on a specific helper class

// Require the autoloader, normal composer stuff
require 'vendor/autoload.php';

// Direct usage ( not intended )
$result = Mossengine\Helpers\_Array\_IsAssociative::_IsAssociative(['a' => 'A']);

// Mossengine Helper usage ( intended )
$result = Mossengine\Helper::Array()->IsAssociative(['a' => 'A']);

Documentation

Read the docs for more details on Helpers Array methods.

Related Packages

mojopollo/laravel-helpers

Mojo's Laravel Helpers: A suite of various helpers for use in Laravel 5.0 / 5.1...

561 0
sven/helpers

A collection of useful helper functions for in Laravel applications.

13 20
lsrur/toolbelt

Set of PHP helper functions wrapped for Laravel.

40,571 2
pragmarx/ia-arr

Laravel Illuminate Agnostic Arr

3,735,802 54