Skip to content

Commit 231f2ee

Browse files
Add files via upload
1 parent 3ee428d commit 231f2ee

File tree

2 files changed

+35
-20
lines changed

2 files changed

+35
-20
lines changed

composer.json

Lines changed: 28 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,30 @@
11
{
2-
"name": "mailboxvalidator/mailboxvalidator-php",
3-
"description": "MailboxValidator PHP module enable users to block disposal email, detect free email and validate if an email is valid.",
4-
"type": "library",
5-
"license": "LGPL-3.0",
6-
"keywords": ["mailboxvalidator","email validation"],
7-
"authors": [
8-
{
9-
"name": "MailboxValidator",
10-
"email": "[email protected]"
11-
}
12-
],
13-
"require": {
14-
"php": ">=5.3"
15-
},
16-
"autoload": {
17-
"psr-4": {
18-
"MailboxValidator\\": "src/"
19-
}
20-
},
21-
"version": "2.0.0"
2+
"name": "mailboxvalidator/mailboxvalidator-php",
3+
"description": "MailboxValidator PHP module enable users to block disposal email, detect free email and validate if an email is valid.",
4+
"type": "library",
5+
"license": "LGPL-3.0",
6+
"keywords": ["mailboxvalidator","email validation"],
7+
"authors": [
8+
{
9+
"name": "MailboxValidator",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"require": {
14+
"php": ">=5.3"
15+
},
16+
"require-dev": {
17+
"phpunit/phpunit": "^9"
18+
},
19+
"autoload": {
20+
"psr-4": {
21+
"MailboxValidator\\": "src/"
22+
}
23+
},
24+
"autoload-dev": {
25+
"psr-4": {
26+
"FraudLabsPro\\Test\\": "tests/"
27+
}
28+
},
29+
"version": "2.0.0"
2230
}

phpunit.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<phpunit bootstrap="tests/bootstrap.php" colors="true">
2+
<testsuites>
3+
<testsuite name="MailboxValidator PHP SDK Testcase">
4+
<directory suffix="Test.php">./tests/</directory>
5+
</testsuite>
6+
</testsuites>
7+
</phpunit>

0 commit comments

Comments
 (0)