-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ee428d
commit 231f2ee
Showing
2 changed files
with
35 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |