Download the PHP package lukapeharda/laravel-password-setup without Composer

On this page you can find all versions of the php package lukapeharda/laravel-password-setup. 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-password-setup

laravel-password-setup

Package for Laravel PHP framework which enables sending of email notifications to users (created through API) to setup password.

Consider this scenario: you are creating users through your API endpoint and after receiving their email and creating a user in the DB you want them to create their own password (because generating one for them and sending it through email is bad).

This package allows you to trigger an event which will be listened to by the built-in listener and send an email notification (using Laravel Notification) with a generated URL link with a password setup token. Token generated is the same as the one generated by the Laravel for resetting passwords. Views are provided as well (using Bootstrap v4).

Installation

Install it using composer:

composer require lukapeharda/laravel-password-setup

The service provider will be auto-discovered.

Consider publishing the package to override config or view:

php artisan vendor:publish and select appropriate package from list of provided ones

Usage

By default, package is set to listen to LukaPeharda\LaravelPasswordSetup\Events\UserCreated (which accepts a $user model) and then via LukaPeharda\LaravelPasswordSetup\Listeners\SendNotification listener sends a LukaPeharda\LaravelPasswordSetup\Notifications\SetPassword notification (with generated token) to provided user.

The user will receive an email with a link to a screen where he needs to enter (and confirm) his new password. After entering (and confirming) new password, the user will be logged in automatically.

You can adjust or disable some parts of this flow (and substitute it with your own code) in config/laravel-password-setup.php.

Alternatively, you can use artisan command php artisan password:setup {user} and give it user ID and it will generate a token and send an email notification to the given user.


All versions of laravel-password-setup with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
laravel/framework Version ^5.7
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 lukapeharda/laravel-password-setup contains the following files

Loading the files please wait ....