jsdecena / bridge
A bridge package for legacy system to your new system
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:HTML
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2024-11-09 15:49:56 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
inproviders
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
oremail
. Use it accordingly. -
Do not forget to set up your database credentials in
config/database.php
and runphp artisan migrate
to migrate your database schema.