Skip to content

Commit 9b13bec

Browse files
author
Wazabii
committed
Guide
1 parent 9e00ecb commit 9b13bec

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# MaplePHP - Validation
22
MaplePHP - Validation is a PHP library designed to simplify the process of validating various data inputs. Whether you need to verify if a value is an email or phone number, check for minimum and maximum length constraints, or perform other common validation tasks, MaplePHP - Validation provides a convenient and straightforward solution for handling input validation.
33

4-
### Initiation
4+
## Installation
5+
```
6+
composer require maplephp/validate
7+
```
8+
9+
## Initiation
510
You will always initiate instace with the static method **_val** followed by a value you want to validate.
611

712
```php
8-
use Validate\Inp;
13+
use MaplePHP\Validate\Inp;
914

1015
// Validate option 1
1116
$inp = new Inp("Lorem ipsum dolor");

0 commit comments

Comments
 (0)