Download the PHP package proxeuse/fortify-tabler without Composer

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

Latest Stable Version Total Downloads PHP Version Support License

Introduction

Laravel 8 has a new and very efficient application scaffolding package called Jetstream, many users however do not want to learn a new framework (TailWind CSS). Luckily, the backend of Jetstream has been made available under the name of Fortify. Fortify is a headless authentication backend without any pre-configured frontend templates which is a disadvantage. FortifyUI improves Fortify by adding that missing feature.

This package is a preset for FortifyUI, it brings ready-to-use and beautiful templates for the most important pages which include: login, registration, password reset pages and two factor authentication. In the latest release, avatars and device management are introduced. The templates are based and build on the Tabler.io framework which is build with Bootstrap 5.0.

This preset includes Tabler assets for release 1.0.0-alpha.21.

Installation

To get started please install the package using composer. This command also installs FortifyUI so you shouldn't install it first.

Once installed, please run the installer using the following PHP artisan command. The installer will take you through the installation process and ask you some questions.

Please do not forget to run the php artisan migrate command after the successfull installation!

Update Instructions

You are able to perform certain updates using the built in updater. This updater will try to override certain files which are included in a new release. Please note that changes applied to those files will be discarded and you should make sure your changes are safe.

Firstly, make sure that you update all files from the repository. This can be done by running the following command or by copying the contents of the repository to your /vendor/proxeuse/fortify-tabler/ folder.

Once succeeded, you should run the built in update command. You're able to choose between a couple of different updates.

The command above will update all files, it functions the same as the --type=full command. All of other the options are listed below:

Command Action
php artisan tabler:update --type=full This will override all files originally installed by the installer.
php artisan tabler:update --type=views This will override all views which are used by the installer.
php artisan tabler:update --type=language This will replace the language files with updated ones.
php artisan tabler:update --type=controllers This will update the controllers which are used by the package.
php artisan tabler:update --type=public This will update all public resources, including for example .css and .js files.

Set session driver to database

This package features a function for users to force-logout devices from their account. In order for this function to work you'll need to have set the session driver to database. This can be done by chaning the SESSION_DRIVER variable in the .env file to database. A part of the file will look like the one below. In this example the session lifetime is set to 5 days instead of the default 2 hours.

Two Factor Authentication

For the 2FA to work, you'll need to perform some manual steps. Firstly, uncomment Fortify::twoFactorChallengeView() from your /app/Providers/FortifyUIServiceProvider.php file to register the view. Then, go to the fortify.php config file and make sure Features::twoFactorAuthentication is uncommented. Next, you'll want to update your User model to include the following:

Mail Verification

To enable the email verification feature, you'll need to visit the FortifyUI service provider (/app/Providers/FortifyUIServiceProvider.php) and uncomment Fortify::verifyEmailView(), to register the view. Then, go to the fortify.php config file and make sure Features::emailVerification() is uncommented. Next, you'll want to update your User model to include the following:

This allows you to attach the verified middleware to any of your routes.

Password Confirmation

To enable the password confirmation feature, you'll need to visit the FortifyUI service provider (/app/Providers/FortifyUIServiceProvider.php) and uncomment Fortify::confirmPasswordView(), to register the view. This allows you to attach the password.confirm middleware to any of your routes.

Update User Profile and Password

To enable the ability to update user passwords and/or profile information, go to the fortify.php config file and make sure these features are uncommented:

Screenshot

License

fortify-tabler is open-sourced software licensed under the MIT license.


All versions of fortify-tabler with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4 || ^8.0
illuminate/contracts Version ^8.0
zacksmash/fortify-ui Version ^1.0
intervention/image Version ^2.5.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 proxeuse/fortify-tabler contains the following files

Loading the files please wait ....