From 6295296acf6888c570a28c1887e976f755909082 Mon Sep 17 00:00:00 2001 From: Kabirou ALASSANE Date: Sat, 18 May 2024 15:47:58 +0100 Subject: [PATCH] Update email and username in README - Update email address and username references in README file - Change from kabirou-alassane.com to username-blakvghost.com - Maintain consistency across all URLs and contact information Ensures users have the correct email and website to reach out for support or access the project resources. --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 027e221..2227284 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@
-logo PHPValidator +logo PHPValidator

@@ -8,7 +8,7 @@ ![Packagist Version (custom server)](https://img.shields.io/packagist/l/BlakvGhost/php-validator?label=Licence) ![Packagist Version (custom server)](https://img.shields.io/packagist/dt/BlakvGhost/php-validator?label=download)

- +kabirou-alassane
## About PHPValidator @@ -218,21 +218,21 @@ PHPValidator provides a variety of predefined rules that you can use for data va ```php 'username' => 'min:8' - ``` + ``` 19. **Not In Rule** - Validates that a field's value is not in a specified set. ```php 'value' => 'not_in:foo,bar' - ``` + ``` 20. **Required With Rule** - Requires the field to be present if another specified field is present. ```php 'firstname' => 'required_with:lastname', - ``` + ``` 21. **Valid IP Rule** - Validates that a field's value is a valid IP address. @@ -246,14 +246,14 @@ PHPValidator provides a variety of predefined rules that you can use for data va ```php 'config' => 'json', - ``` + ``` 23. **URL Rule** - Validates that a field's value is a valid URL. ```php 'website' => 'url', - ``` + ``` 24. **Alpha Numeric Rule** @@ -261,7 +261,7 @@ PHPValidator provides a variety of predefined rules that you can use for data va ```php 'pseudo' => 'alpha_num', - ``` + ``` 25. **Boolean Rule** @@ -269,7 +269,7 @@ PHPValidator provides a variety of predefined rules that you can use for data va ```php 'is_admin' => 'bool', - ``` + ``` 26. **Size Rule** - Validates that the size of a string, integer, array, or file is equal to a specified value. @@ -281,7 +281,7 @@ PHPValidator provides a variety of predefined rules that you can use for data va 'array' =>'size:7', // count(array) == 7 'file' =>'size:512', // file size (kb) == 512 ] - ``` + ``` ## Custom Rule @@ -403,7 +403,7 @@ If you would like to contribute to PHPValidator, please follow our [Contribution ## Support -For support, you can reach out to me by email at . Feel free to contact me if you have any questions or need assistance with PHPValidator. +For support, you can reach out to me by email at . Feel free to contact me if you have any questions or need assistance with PHPValidator. ## License