summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolCh <chernyshev.vladimir@pdffiller.team>2017-11-02 13:51:47 +0200
committerVolCh <chernyshev.vladimir@pdffiller.team>2017-11-02 13:51:47 +0200
commitfb8ed694b186e9dbbe542bd55902a69a349d25ae (patch)
tree6562b96ba8ee25f4a07ed956bed32f2f7b3a3f99
parent3cab8a35e2596d47465c07e52cddde8c6bdcbb63 (diff)
downloadsmtp-validate-email-fb8ed694b186e9dbbe542bd55902a69a349d25ae.zip
smtp-validate-email-fb8ed694b186e9dbbe542bd55902a69a349d25ae.tar.gz
smtp-validate-email-fb8ed694b186e9dbbe542bd55902a69a349d25ae.tar.bz2
Add composer support
-rw-r--r--.gitignore4
-rw-r--r--composer.json24
2 files changed, 27 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index c3beea4..d3bc96c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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"]
+ }
+}