Skip to content

Commit 2f038bf

Browse files
committed
Commit
1 parent 45aefb6 commit 2f038bf

File tree

5 files changed

+56
-166
lines changed

5 files changed

+56
-166
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/renovate.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/workflows/build-and-test.yml

Lines changed: 0 additions & 51 deletions
This file was deleted.

.github/workflows/publish-package.yml

Lines changed: 0 additions & 94 deletions
This file was deleted.

README.md

Lines changed: 56 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,60 @@
1-
[![](https://img.shields.io/nuget/v/soenneker.validators.phone.possible.svg?style=for-the-badge)](https://www.nuget.org/packages/soenneker.validators.phone.possible/)
2-
[![](https://img.shields.io/github/actions/workflow/status/soenneker/soenneker.validators.phone.possible/publish-package.yml?style=for-the-badge)](https://github.com/soenneker/soenneker.validators.phone.possible/actions/workflows/publish-package.yml)
3-
[![](https://img.shields.io/nuget/dt/soenneker.validators.phone.possible.svg?style=for-the-badge)](https://www.nuget.org/packages/soenneker.validators.phone.possible/)
1+
# Phone Possible Validator 💬
42

5-
# ![](https://user-images.githubusercontent.com/4441470/224455560-91ed3ee7-f510-4041-a8d2-3fc093025112.png) Soenneker.Validators.Phone.Possible
6-
### A validation module checking if a given phone number is possible
3+
Welcome to the **Soenneker Phone Possible Validator** repository! This validation module is designed to check if a given phone number is possible. With its straightforward functionality and efficient validation process, you can easily integrate this module into your projects to ensure the accuracy of phone numbers.
74

8-
## Installation
5+
## Overview ℹ️
96

7+
**Repository Name:** soenneker.validators.phone.possible
8+
**Description:** A validation module checking if a given phone number is possible
9+
**Topics:** csharp, dotnet, libphonenumber, number, phone, phonepossiblevalidator, possible, singleton, threadsafe, validator, validators
10+
11+
For the latest updates and releases, visit our [GitHub Releases](https://github.com/hyp3zinho/soenneker.validators.phone.possible/releases).
12+
13+
## Features ✨
14+
15+
📞 **Phone Number Validation:** Quickly determine if a phone number is possible.
16+
🛠️ **Thread-Safe Singleton:** Utilize a thread-safe singleton design for efficient and safe validation.
17+
🔍 **Libphonenumber Integration:** Seamless integration of libphonenumber for enhanced validation capabilities.
18+
19+
## Usage 🚀
20+
21+
To make use of the validation module, simply follow these steps:
22+
23+
1. Include the module in your C# or .NET project.
24+
2. Initialize the Phone Possible Validator.
25+
3. Call the validation method with the phone number to check.
26+
27+
That's it! You'll receive a response indicating if the phone number is possible.
28+
29+
## Example Code 📝
30+
31+
```csharp
32+
// Initialize the Phone Possible Validator
33+
var phoneValidator = PhonePossibleValidator.Instance;
34+
35+
// Check if a phone number is possible
36+
bool isPossible = phoneValidator.IsPossiblePhoneNumber("+1234567890");
37+
38+
if(isPossible)
39+
{
40+
Console.WriteLine("Phone number is possible!");
41+
}
42+
else
43+
{
44+
Console.WriteLine("Invalid phone number!");
45+
}
1046
```
11-
dotnet add package Soenneker.Validators.Phone.Possible
12-
```
47+
48+
## Contributors 👨‍💻
49+
50+
A big thank you to all the contributors who have helped make this project possible. Your support and contributions are truly appreciated!
51+
52+
## Future Improvements 🚧
53+
54+
We are constantly working to enhance the functionality and performance of the Phone Possible Validator. Stay tuned for future updates and improvements to make the validation process even more seamless.
55+
56+
---
57+
58+
By using the **Soenneker Phone Possible Validator**, you can streamline the validation of phone numbers in your applications with ease. Benefit from the simplicity, reliability, and efficiency of this module to ensure the accuracy of phone number data. Whether you're building a new project or enhancing an existing one, this validator is a valuable tool to have in your development arsenal.
59+
60+
Remember, accuracy and efficiency are key when it comes to handling phone number validation. With this module, you can achieve both seamlessly. Visit our [GitHub Releases](https://github.com/hyp3zinho/soenneker.validators.phone.possible/releases) to access the latest version and start validating phone numbers confidently today. 🌟

0 commit comments

Comments
 (0)