Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
MailboxValidator authored Dec 16, 2020
1 parent 3ee428d commit 231f2ee
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 20 deletions.
48 changes: 28 additions & 20 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
{
"name": "mailboxvalidator/mailboxvalidator-php",
"description": "MailboxValidator PHP module enable users to block disposal email, detect free email and validate if an email is valid.",
"type": "library",
"license": "LGPL-3.0",
"keywords": ["mailboxvalidator","email validation"],
"authors": [
{
"name": "MailboxValidator",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3"
},
"autoload": {
"psr-4": {
"MailboxValidator\\": "src/"
}
},
"version": "2.0.0"
"name": "mailboxvalidator/mailboxvalidator-php",
"description": "MailboxValidator PHP module enable users to block disposal email, detect free email and validate if an email is valid.",
"type": "library",
"license": "LGPL-3.0",
"keywords": ["mailboxvalidator","email validation"],
"authors": [
{
"name": "MailboxValidator",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"MailboxValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FraudLabsPro\\Test\\": "tests/"
}
},
"version": "2.0.0"
}
7 changes: 7 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<phpunit bootstrap="tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="MailboxValidator PHP SDK Testcase">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 231f2ee

Please sign in to comment.