bernhardk/laravel-bios2000
最新稳定版本:1.1.1
Composer 安装命令:
composer require bernhardk/laravel-bios2000
包简介
Laravel package for the ERP system "BIOS2000" by Brumund GmbH
README 文档
README
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());
统计信息
- 总下载量: 1.03k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-11-28