單機版 v.0.0.1 20250617

修正問題
This commit is contained in:
allen.yan 2025-06-17 12:58:45 +08:00
parent 7b562e6112
commit 050866f626
4 changed files with 4 additions and 67 deletions

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Livewire\Admin; namespace App\Livewire\Forms\Modals;
use App\Models\Room; use App\Models\Room;
use App\Models\Branch; use App\Models\Branch;

View File

@ -11,7 +11,6 @@
"laravel/framework": "^12.0", "laravel/framework": "^12.0",
"laravel/sanctum": "^4.0", "laravel/sanctum": "^4.0",
"laravel/tinker": "^2.10.1", "laravel/tinker": "^2.10.1",
"league/flysystem-ftp": "^3.29",
"livewire/livewire": "^3.4", "livewire/livewire": "^3.4",
"livewire/volt": "^1.7.0", "livewire/volt": "^1.7.0",
"maatwebsite/excel": "^3.1", "maatwebsite/excel": "^3.1",

56
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "2cd258dd8d67caabf878279f2818cfbc", "content-hash": "3d96136c4b2709b3558d30eafa66bcfc",
"packages": [ "packages": [
{ {
"name": "brick/math", "name": "brick/math",
@ -2169,56 +2169,6 @@
}, },
"time": "2024-10-08T08:58:34+00:00" "time": "2024-10-08T08:58:34+00:00"
}, },
{
"name": "league/flysystem-ftp",
"version": "3.29.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem-ftp.git",
"reference": "17e8e422cb43a7fefa06ec8ddf36ee8ec936d138"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem-ftp/zipball/17e8e422cb43a7fefa06ec8ddf36ee8ec936d138",
"reference": "17e8e422cb43a7fefa06ec8ddf36ee8ec936d138",
"shasum": ""
},
"require": {
"ext-ftp": "*",
"league/flysystem": "^3.0.0",
"league/mime-type-detection": "^1.0.0",
"php": "^8.0.2"
},
"type": "library",
"autoload": {
"psr-4": {
"League\\Flysystem\\Ftp\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Frank de Jonge",
"email": "info@frankdejonge.nl"
}
],
"description": "FTP filesystem adapter for Flysystem.",
"keywords": [
"Flysystem",
"file",
"files",
"filesystem",
"ftp",
"ftpd"
],
"support": {
"source": "https://github.com/thephpleague/flysystem-ftp/tree/3.29.0"
},
"time": "2024-06-12T09:46:12+00:00"
},
{ {
"name": "league/flysystem-local", "name": "league/flysystem-local",
"version": "3.29.0", "version": "3.29.0",
@ -10091,12 +10041,12 @@
], ],
"aliases": [], "aliases": [],
"minimum-stability": "stable", "minimum-stability": "stable",
"stability-flags": [], "stability-flags": {},
"prefer-stable": true, "prefer-stable": true,
"prefer-lowest": false, "prefer-lowest": false,
"platform": { "platform": {
"php": "^8.2" "php": "^8.2"
}, },
"platform-dev": [], "platform-dev": {},
"plugin-api-version": "2.6.0" "plugin-api-version": "2.6.0"
} }

View File

@ -30,18 +30,6 @@ return [
'disks' => [ 'disks' => [
'ftp_test' => [
'driver' => 'ftp',
'host' => env('FTP_HOST', '192.168.11.16'),
'username' => env('FTP_USERNAME', 'vod'),
'password' => env('FTP_PASSWORD', 'vod'),
'port' => 21,
'root' => '/', // 或指定資料夾
'passive' => true,
'ssl' => false,
'timeout' => 30,
],
'local' => [ 'local' => [
'driver' => 'local', 'driver' => 'local',
'root' => storage_path('app/private'), 'root' => storage_path('app/private'),