Download the PHP package viktor-miller/laravel-basic-auth without Composer

On this page you can find all versions of the php package viktor-miller/laravel-basic-auth. 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-basic-auth

Laravel HTTP Basic Authentication (BA)

This package activates the HTTP Basic Authentication mode in the application on Laravel >= 5.4

After you call the command to activate the HTTP Basic Authentication mode, you will be asked to use the default authentication data from the configuration file. These data are permanent. Then you will be asked to use the temporary login data, which will be active only for the current mode. If you enter temporary data, it will be added to the data stack to the existing default login data from the config file (if you selected it). This allows you to have several keys to log in (for example permanent key for the admin and temporary for the customer). If you do not use the authentication data from the configuration file, you will be forced to enter the temporary login data every time. At the end you can enter an optional time interval in days and/or hours and/or minutes, after which the HTTP Basic Authentication mode will be automatically turned off.

Features

console auth

Installation

Add package to your composer.json file:

composer require viktor-miller/laravel-basic-auth

For Laravel >= 5.4 add service provider to config/app.php

Call artisan command to publish config file

php artisan vendor:publish --tag=basic-auth:config

Change the configuration file basic-auth.php as you like

Note: in the configuration files, use the passwords as they are, when you turn on the HTTP Basic Authenticationmode, the passwords will be written to the temporary file in storage/framework/basicauth. The passwords will be hashed.

Usage

To put the application into basic HTTP authentication mode, call this command and follow the instructions

php artisan basic-auth:on

To bring the application out of HTTP Basic Authentication mode call

php artisan basic-auth:off

Translation

If you want to add change translation files call

php artisan vendor:publish --tag=basic-auth:translations

All versions of laravel-basic-auth with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
laravel/framework Version >=5.4.0 <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 viktor-miller/laravel-basic-auth contains the following files

Loading the files please wait ....