ithilbert/updateaerzte
Composer 安装命令:
composer require ithilbert/updateaerzte
包简介
SFTP Verbindungen
关键字:
README 文档
README
Eine Komponente die als Basis für den Inhalt eine Website dient. Diese soll in das Verzeichnis "packages" geclont werden.
Vorraussetzungen
Installation
composer require ithilbert/uploadaerzte
.env anpassen
SFTP SETTINGS
SFTP_USERNAME=userName
SFTP_HOST=IPAdresse
SFTP_PORT=22
SFTP_ROOT='/home/aaa/database/seeders'
SFTP_PASSWORD=mein-passwort
config/filesystems.php erweitern
'sftp' => [
'driver' => 'sftp',
'host' => env('SFTP_HOST'),
// Settings for basic authentication...
'username' => env('SFTP_USERNAME'),
// Settings for SSH key based authentication with encryption password...
'privateKey' => storage_path('app/ssh/igl_kundencenter_ssh'),
'passphrase' => env('SFTP_PASSWORD'),
// Settings for file / directory permissions...
'visibility' => 'public', // `private` = 0600, `public` = 0700
'directory_visibility' => 'private', // `private` = 0700, `public` = 0755
// Optional SFTP Settings...
// 'hostFingerprint' => env('SFTP_HOST_FINGERPRINT'),
'maxTries' => 4,
'port' => (int) env('SFTP_PORT', 22),
'root' => env('SFTP_ROOT', ''),
'timeout' => 30,
// 'useAgent' => true,
'throw' => true, // Ab Laravel 9
],
config/app.php Provider hinzufügen
\ITHilbert\UploadAerzte\UploadAerzteServiceProvider::class,
Authoren
Jan Friedrichsen
Homepage: webulous.de
und
IT-Hilbert GmbH
Access, Excel, VBA und Web Programmierungen
Homepage: IT-Hilbert.com
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-07-31