Download the PHP package vectorwyse/idle-timeout-alert without Composer

On this page you can find all versions of the php package vectorwyse/idle-timeout-alert. 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 idle-timeout-alert

Idle Timeout Alert

A Laravel package for alerting idle sessions about to expire.

SESSION_LIFETIME is great but how is the user supposed to know when the session is about to expire due to inactivity, especially if it is a low value? Furthermore, a user may be actively engaging the site (by clicking around or filling out a form) without ever sending a request to the backend. Laravel may end the session during this time without the user knowing.

When the session is about to expire, show a dialog so the user can choose not to be logged out.

How it works

This code doesn't actually log the user out. It still relies on Laravel's mechanism for expiring sessions. All it does is periodically check how much time before the session will expire and alert the user when it is almost time.

A demo library is at vectorwyse/idle-timeout-alert-demo

Installation

Laravel package and NPM dependencies

Usage

Disable "Remember Me" functionality

Step 1: Add the following line to app/User.php:

Step 2: Remove the "Remember Me" checkbox from your login form

Publish and compile assets

Step 1: Publish assets to vendor folder:

Step 2: Add the following to your application's resources/js/app.js. Place within section where components are registered:

Step 3: Compile

Add component

Finally, add the component to any page where you would like the dialog. A good place is layouts/app.blade.php.

By default the dialog will only appear if the user happens to be idle when the session is about to expire. As long as user has activity, a ping will be sent in the background keeping the session alive.

If you would like to ignore user activity and have the dialog appear no matter what, then use the following:

If you want to allow a user to be on a particular page forever without ever timing out, then use the following:

As long as user is on the page, a ping will be sent in the background keeping the session alive and no dialog will ever appear.

Customization

Feel free to make changes to the dialog in resources/assets/vendor/vectorwyse/idle-timeout-alert/js/components/TimeoutDialog.vue. Don't forget to recompile assets afterward!

Support Us

Vectorwyse is a digital agency offering advisory and web development services. We love building things with Laravel and Vue.js, so when we have an opportunity to give back to the community, we're super excited!

If you find this package useful, or if you would like us to build something for you, feel free to drop us a line!


All versions of idle-timeout-alert with dependencies

PHP Build Version
Package Version
No informations.
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 vectorwyse/idle-timeout-alert contains the following files

Loading the files please wait ....