Skip to content

Commit

Permalink
Update email and username in README
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
BlakvGhost committed May 18, 2024
1 parent ead4cce commit 6295296
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<div align="center">

<img src="https://php-validator.kabirou-alassane.com/assets/logo/svg/logo-no-background1.svg" alt="logo PHPValidator" height="200">
<img src="https://php-validator.username-blakvghost.com/assets/logo/svg/logo-no-background1.svg" alt="logo PHPValidator" height="200">

<p>

![Packagist Version (custom server)](https://img.shields.io/packagist/v/BlakvGhost/php-validator?label=stable)
![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)
</p>

kabirou-alassane
</div>

## About PHPValidator
Expand Down Expand Up @@ -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.
Expand All @@ -246,30 +246,30 @@ 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**

- Validates that a field's value contains only alphanumeric characters.

```php
'pseudo' => 'alpha_num',
```
```

25. **Boolean Rule**

- Validates that a field's value is a boolean.

```php
'is_admin' => 'bool',
```
```

26. **Size Rule**
- Validates that the size of a string, integer, array, or file is equal to a specified value.
Expand All @@ -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

Expand Down Expand Up @@ -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 <dev@kabirou-alassane.com>. 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 <dev@username-blakvghost.com>. Feel free to contact me if you have any questions or need assistance with PHPValidator.

## License

Expand Down

0 comments on commit 6295296

Please sign in to comment.