Download the PHP package glaivepro/invytr without Composer

On this page you can find all versions of the php package glaivepro/invytr. 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 invytr

Invytr

Build Status

When making a website where users are created instead of registering themselves, you are faced with the challenge of safely giving users the access to their newly created accounts. Invytr solves this task by sending an email with a link that will enable user to set a password for the account.

This package is mainly intended to be used together with Laravel's auth scaffolding and password resetting mechanism.

Usage

Install it:

You can now send invitations to your users. They will receive an email with a link for the password setting.

Customization

Invite expiration

By default invite tokens will expire in the same time as password resets. The default of 60 minutes is usually not enough for invited users as they might not sign up immediately after their invite is sent.

To increase the expiration time for invites, you should add key invites_expire in passwords.users within config/auth.php. No you don't have to publish anything. Just add the time in minutes like this:

Custom texts and localization

You can customize/localize the strings in your JSON localization files (found in resources/lang).

The invite email uses the following strings:

The password setting page uses only a single string:

Responses to setting attempts uses these strings:

Email

Similar to Laravel's reset password functionality, you can create a sendPasswordSetNotification method on your user model.

View

By default this package uses the same auth.passwords.reset view as the Laravel's reset functionality. If you want more customization, make a auth.passwords.set view that includes all the same fields and posts the same request as does auth.passwords.reset.

Password setting and responses

The resets are going through Laravel's password.update route and handled by the reset method on App\Http\Controllers\Auth\ResetPasswordController.

If you want to customize the handling and/or responses, edit that method. You can tell apart setting and resetting requests by checking the session.

Warning

Doing php artisan auth:clear-resets will also flush your invite tokens if they are expired according to auth.passwords.users.expire config value. Your auth.passwords.users.invites_expire config value will be ignored.

Change log

1.0 is the inital version of this package. Laravel 5.7 with PHP7.1 and PHP7.2 supported.

See CHANGELOG for more information on what has changed recently.

TODO

Add a trait that sets a random password and sends an invite when creating a new user.

Try to set expiration by tinkering with created_at when making a token instead of how it's done now.

Publish language files?

Improve testing,

Improve code quality and consistency:

Maybe expand the scope to also provide something like a MustResetPasswordOnNextVisit trait? Or that's another package?

License

The MIT License (MIT). Please see License File for more information.


All versions of invytr with dependencies

PHP Build Version
Package Version
Requires laravel/framework Version ^9.0|^10.0
laravel/ui Version ^4.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 glaivepro/invytr contains the following files

Loading the files please wait ....