diff options
-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"] + } +} |