satheez/php-helper-functions

Useful PHP helper functions

0.0.1 2019-12-20 06:10 UTC

This package is auto-updated.

Last update: 2024-05-18 15:31:15 UTC


README

The library satheez/php-helper-functions is a collection of useful php helper functions.

Latest Stable Version Minimum PHP Version Build Status License Scrutinizer Code Quality

Installation

composer require satheez/php-helper-functions

Example

<?php

use Sa\Helper\Validate;

if( Validate::isValidString($string) ) {
   // Do something here
}

CREDITS

This library makes use of the following brilliant and well known libraries:

Tests

All functions are tested against a number of unit tests and PHP Versions. Build Status

Install

Install the latest satheez/php-helper-functions library with composer:

composer require satheez/php-helper-functions

Also make sure to require your composer autoload file:

require __DIR__ . '/vendor/autoload.php';