Download the PHP package atomasevic/mxlogin without Composer

On this page you can find all versions of the php package atomasevic/mxlogin. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package mxlogin

MXLogin

Build Status Latest Stable Version Total Downloads License
Improve your registration/signup pages with links to user's email provider inbox.
Don't just tell users to check their Gmail - give them a link.

How does it work?

MXLogin is checking MX records for the given email address and maps them to one of supported email providers.
This way it can recognize your organization is using Google Mail even if your email address doesn't end with gmail.com. </br /> Besides login urls, you can make sure your users didn't do a typo (gimail.com instead of gmail.com) by catching errors.

Supported email providers

Need more?

How to install (Composer)

composer require atomasevic/mxlogin

or add to your project's composer.json

"require": {
    "atomasevic/mxlogin": "~1.0.1"
}

How to use

Search method returns array if it has provider for the given email address:

If there is no match in our providers, it returns null.

Throw new

There are few errors thrown by MXLogin you'll need to catch in your application.

No valid provider classes found in providers folder. (code = 101)

This error is thrown when MXProviderManager can't find any valid MXProvider class inside providers dir.
This should never happen, unless you delete or rename everything in providers dir.

Email format is not valid. (code = 201)

This error is thrown when you pass invalid string to search(). It doesn't do anything smarter than check if
format is [email protected]`. It doesn't check mail servers for valid recipient.

Email domain does not exist. (code = 202)

This error is thrown when email domain doesn't resolve to any mxHosts. You could catch user typos with this error.

Contribute

Contribution is more than welcome :)
Fork it, make it better, run tests (codecept run) and create pull request.

Questions, problems?

Please open issue, I'll do my best to answer ASAP.

This repo is better because of this people :heart:

Thank you...
Marko Kruljac (@krukru)
Slaven Vincetic (@slaven-ii)
Tony Mrakovcic (@tonymrakovcic)

License

MIT License


All versions of mxlogin with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package atomasevic/mxlogin contains the following files

Loading the files please wait ....