satheez / php-helper-functions
Useful PHP helper functions
0.0.1
2019-12-20 06:10 UTC
Requires
- php: ^7.2
- ext-json: *
- ext-mbstring: *
- fzaninotto/faker: ^1.9
Requires (Dev)
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2024-10-18 16:34:08 UTC
README
The library satheez/php-helper-functions
is a collection of useful php helper functions.
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.
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';