Download the PHP package tebros/laravel-email-confirmation without Composer

On this page you can find all versions of the php package tebros/laravel-email-confirmation. 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 laravel-email-confirmation

Laravel E-Mail Confirmation

Latest Version on Packagist Total Downloads

This package integrates an email confirmation into the default laravel authentification.

It is has been developed and tested for Laravel 5.5 but it should also work with other versions of Laravel.

Installation

Make use of composer to require this package.

The installation appends a function call in the routes/web.php file automatically. Please do not comment it out!

Run the make:auth command if not already done.

Skip this step if you have already executed the command in the past.

Make a migration to create the needed table users_confirmation.

Edit the app/Http/Controllers/Auth/RegisterController.php file.

The editing is quite simple. To hook into the default Laravel authentification prozess, you need to change the RegistersUsers trait at the top.

Edit the app/Http/Controllers/Auth/LoginController.php file.

It is required to display correct a message if the account is not confirmed.

Make sure your config/mail.php file contains these important settings:

Moreover, make sure your config/app.php file contains these important settings:

Configuration and Publishing

After the installation you can make use of the confirm route name to link the Resend Confirmation E-Mail site.

Important! You should edit your auth/login.blade.php view and add this link to request a new confirmation email!

If you want to configure the email confirmation, run the following command.

You can modify the config/emailconfirmation.php file as you wish.

To change a message or text you can modify the files in the lang/vendor/emailconfirmation directory.

Run the following command to do this.

If you do not want to use the default Laravel views, you can modify the views in the views/vendor/emailconfirmation directory.

Run the following command to do this.

Update

You can update the package by running the following command or update all of your dependencies with composer update.

If you want to update your published files like config/emailconfirmation.php, lang/vendor/emailconfirmation or views/vendor/emailconfirmation, you can use the following commands.

Attention! These commands will override your published files. So please backup your config, views or lang files if you do not want to lose them!

Uninstallation

You should remove the following two lines in your routes/web.php file.

Edit the app/Http/Controllers/Auth/RegisterController.php file and the app/Http/Controllers/Auth/LoginController.php file to remove the Laravel hook.

Now just type the following command.

License

This package is open-sourced software licensed under the MIT license


All versions of laravel-email-confirmation with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0.0
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 tebros/laravel-email-confirmation contains the following files

Loading the files please wait ....