Skip to content

Commit c7baf78

Browse files
committed
Add initial implementation of email validator and tests
1 parent 7fecb3c commit c7baf78

File tree

9 files changed

+20388
-0
lines changed

9 files changed

+20388
-0
lines changed

.gitignore

-9 Bytes
Binary file not shown.

composer.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "muhammad/company-email-validator",
3+
"description": "A fast and efficient company/work email validator that checks if an email domain belongs to a free email provider.",
4+
"type": "library",
5+
"license": "MIT",
6+
"autoload": {
7+
"psr-4": {
8+
"Muhammad\\CompanyEmailValidator\\": "src/"
9+
}
10+
},
11+
"authors": [
12+
{
13+
"name": "Muhammad Yahaya",
14+
"email": "[email protected]"
15+
}
16+
],
17+
"minimum-stability": "dev",
18+
"require": {
19+
"php": "^8.2"
20+
},
21+
"config": {
22+
"allow-plugins": {
23+
"pestphp/pest-plugin": true
24+
}
25+
},
26+
"require-dev": {
27+
"pestphp/pest": "3.x-dev"
28+
}
29+
}

0 commit comments

Comments
 (0)