Download the PHP package yaquawa/laravel-email-reset without Composer

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

A Laravel package for resetting user email by sending a verification link to the new email.

This package reset the user's email by:

  1. Send verification link to user's new email.
  2. If the user clicks the verification link in their new email, the package will verify the new email and set the old email to the new one.

How to install

To get started, follow the following steps.

Installation

composer require yaquawa/laravel-email-reset

Configuration

Add the following code to your <config/auth.php> file.

Migration

php artisan migrate

If you would like to use your own migration, set ignore-migrations to true in the config file (See the migration file here).

Publish the assets

The following command publishes the package's controller and translation files to your app's directories.

php artisan vendor:publish --tag=laravel-email-reset

Asset Location
Controller app/Http/Controllers/Auth/ResetEmailController.php
Translations resources/lang/vendor/laravel-email-reset

Use the CanResetEmail trait

In your app/Models/User.php file, use the CanResetEmail trait. This trait adds a resetEmail method to the user model.

Usage

Send the verification email

If you want to change the email contents, you can do something like this in your AppServiceProvider.php.

After the user clicked the verification link, by default, the user will be redirected to the root of your app URL. You can change this behavior by overriding the methods of the published controller ResetEmailController.

Retrieve the "new email"

The new email won't be saved until the user clicks the verification link. Before user clicking the verification link you can get the new email by:


All versions of laravel-email-reset with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1.3
illuminate/support Version ^6.0 || ^7.0
illuminate/auth Version ^6.0 || ^7.0
illuminate/http Version ^6.0 || ^7.0
illuminate/notifications Version ^6.0 || ^7.0
yaquawa/laravel-token-repository Version 1.*
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 yaquawa/laravel-email-reset contains the following files

Loading the files please wait ....