Download the PHP package sandrocagara/laravelmultiauth without Composer

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

Laravel Native Multi Authentication

A Simple Native Laravel Package for handling multiple authentication.

GitHub issues GitHub forks GitHub stars GitHub license

![Image of Sandro Cagara](https://i.ibb.co/WzjQLHV/68747470733a2f2f692e6962622e636f2f5a56516a3777592f647361646164732e706e67.jpg) ## Features | Forgot password | Account Verification Email | Change Password | |--------------------------------------|------------------------------|--------------------------------------| |:heavy_check_mark: Subscriber |:heavy_check_mark: Subscriber |:heavy_check_mark: Subscriber | |:heavy_check_mark: Administrator |:x: Administrator |:heavy_check_mark: Administrator | |:heavy_check_mark: Super Administrator|:x: Super Administrator |:heavy_check_mark: Super Administrator| ## Compatibility | Laravel Framework | |--------------------| | >= 5.0.x <= 5.8.x | ## Installing and configuring Install using composer:
**Note:** before you install this you need make an default authentication using `php artisan make:auth` then delete `home.blade.php`. and you need to publish `[#]Sandrocagara\Multiauth\AuthServiceProvider`: ## Routes You need to copy/paste this in your `routes/web.php`. ## Migration Then after that you're ready to migrate. ## Config in `config/auth.php` the default expiration of reset password is `30mins`. you can change it by updating this array. ## Generate Dummy accounts using `Laravel Tinker` **User:** `factory(App\User::class, 5)->create();`
**Administrator:** `factory(App\Admin::class, 5)->create();`
**Super Administrator:** `factory(App\SuperAdmin::class, 5)->create();` **Default Password:** `secret` ## Common Issue you may Encounter **Error:** Expected response code 250 but got code "530", with message "530 5.7.1 Authentication required".
**Solution:** You need to setup your mail driver. for more info [https://laravel.com/docs/5.6/mail] --- **Error:** Object not found! when click reset password in email.
**Solution:** if you're using `php artisan serve` you need to change the `APP_URL` value from http://localhost to http://127.0.0.1:8000/ in the env file. --- **Error:** Trying to access array offset on value of type null. this type of error cause of php version so maybe you can upgrade the php version in your composer.json
**Solution:** try to update composer by this command: `composer update` --- **Error:** “The page has expired due to inactivity”.
**Solution:** if youre using php artisan serve you need to change in env file the APP_URL from http://localhost to http://127.0.0.1:8000/ --- ## License MIT © 2020 [Sandro Cagara](https://github.com/sndrjhlncgr)


All versions of laravelmultiauth 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 sandrocagara/laravelmultiauth contains the following files

Loading the files please wait ....