Skip to content

Laravel package for the ERP system "BIOS2000" by Brumund GmbH

Notifications You must be signed in to change notification settings

BernhardK91/laravel-bios2000

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 

Repository files navigation

BIOS2000 for Laravel

Requirements

https://github.com/Microsoft/msphpsql/

Installation

composer require bernhardk/laravel-bios2000

In ".env" the following needs to be added and configured:

BIOS_CONNECTION=mssql
BIOS_HOST=...
BIOS_PORT=1433
BIOS_USERNAME=...
BIOS_PASSWORD=...
BIOS_DB_S=...
BIOS_DB_M=...
BIOS_DB_A=...

In config/database.php the following Connection needs to be added:

'bios2000' => [
    'database' => env('BIOS_DB_M'),
    'driver' => env('BIOS_CONNECTION'),
    'host' => env('BIOS_HOST'),
    'port' => env('BIOS_PORT'),
    'username' => env('BIOS_USERNAME'),
    'password' => env('BIOS_PASSWORD'),
    'dba' => env('BIOS_DB_A'),
    'dbs' => env('BIOS_DB_S'),
],

Allowed methods

To find allowed methods you can simply print

get_class_methods(app()->bios2000);

After that use one of the resultet methods and print that method like

get_class_methods(app()->bios2000->archive());

About

Laravel package for the ERP system "BIOS2000" by Brumund GmbH

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages