diff options
author | VolCh <chernyshev.vladimir@pdffiller.team> | 2017-11-02 13:51:47 +0200 |
---|---|---|
committer | VolCh <chernyshev.vladimir@pdffiller.team> | 2017-11-02 13:51:47 +0200 |
commit | fb8ed694b186e9dbbe542bd55902a69a349d25ae (patch) | |
tree | 6562b96ba8ee25f4a07ed956bed32f2f7b3a3f99 | |
parent | 3cab8a35e2596d47465c07e52cddde8c6bdcbb63 (diff) | |
download | smtp-validate-email-fb8ed694b186e9dbbe542bd55902a69a349d25ae.zip smtp-validate-email-fb8ed694b186e9dbbe542bd55902a69a349d25ae.tar.gz smtp-validate-email-fb8ed694b186e9dbbe542bd55902a69a349d25ae.tar.bz2 |
Add composer support
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | composer.json | 24 |
2 files changed, 27 insertions, 1 deletions
@@ -1,2 +1,4 @@ nbproject -tests.php
\ No newline at end of file +tests.php +composer.lock +vendor/ diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..49749f0 --- /dev/null +++ b/composer.json @@ -0,0 +1,24 @@ +{ + "name": "zytzagoo/smtp-validate-email", + "description": "Perform email address verification via SMTP", + "type": "library", + "license": "GPL-3.0+", + "homepage": "https://github.com/zytzagoo/smtp-validate-email", + "support": { + "source": "https://github.com/zytzagoo/smtp-validate-email/archive/master.zip", + "docs": "https://github.com/zytzagoo/smtp-validate-email/blob/master/README.md", + "issues": "https://github.com/zytzagoo/smtp-validate-email/issues" + }, + "authors": [ + { + "name": "Tomaš Trkulja [zytzagoo]", + "email": "zyt@zytzagoo.net" + } + ], + "require": { + "php": ">=5.0" + }, + "autoload": { + "classmap": ["smtp-validate-email.php"] + } +} |