-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 951 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "devmuhammad/company-email-validator",
"description": "A fast and efficient company/work email validator that checks if an email domain belongs to a free email provider.",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"email validator",
"company email validator",
"business email validator",
"work email validator",
"email domain validator"
],
"autoload": {
"psr-4": {
"Muhammad\\CompanyEmailValidator\\": "src/"
}
},
"authors": [
{
"name": "Muhammad Yahaya",
"email": "adelekeyahaya05@gmail.com"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.2"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require-dev": {
"pestphp/pest": "3.x-dev"
}
}