jsdecena/bridge

A bridge package for legacy system to your new system

Installs: 16

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:HTML

1.0.2 2016-09-28 08:13 UTC

This package is auto-updated.

Last update: 2024-05-09 14:53:26 UTC


README

This aims to migrate your legacy system to any new system

Installation

  • Step1: Add this to your composer.json file
	"require": {
	    "jsdecena/bridge": "1.0.*"
	}
  • Step2: Add this to your config/app.php in providers array
	'providers' => [
	    Jsdecena\Bridge\BridgeServiceProvider::class,
	]
  • Set in your .env file the LEGACY_AUTH_ENDPOINT

  • Run this in your terminal php artisan vendor:publish --tag=migrations

  • Run this in your terminal php artisan vendor:publish --tag=config

  • Check the login key if you are using username or email. Use it accordingly.

  • Do not forget to set up your database credentials in config/database.php and run php artisan migrate to migrate your database schema.