jsdecena / bridge
A bridge package for legacy system to your new system
1.0.2
2016-09-28 08:13 UTC
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2026-02-09 18:41:59 UTC
README
This aims to migrate your legacy system to any new system
Installation
- Step1: Add this to your
composer.jsonfile
"require": { "jsdecena/bridge": "1.0.*" }
- Step2: Add this to your
config/app.phpinprovidersarray
'providers' => [ Jsdecena\Bridge\BridgeServiceProvider::class, ]
-
Set in your
.envfile 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
usernameoremail. Use it accordingly. -
Do not forget to set up your database credentials in
config/database.phpand runphp artisan migrateto migrate your database schema.