我想使用 Laravel 中的 ftpd 适配器来访问 Synology NAS,这似乎需要这个特定的适配器https://github.com/thephpleague/flysystem/issues/305,但我得到了错误
Driver [Ftpd] is not supported.
该文件在那里:
vendor/league/flysystem/src/Adapter/Ftpd.php
我必须注册任何我可以使用的东西吗?
我尝试像这样在 filesystems.php 中使用它
'diskstation' => [
'driver' => 'Ftpd',
'host' => 'ftp.domain.com',
'username' => '****',
'password' => '****',
// Optional FTP Settings...
'port' => 21,
'root' => '',
'passive' => true,
'ssl' => false,
'timeout' => 10,
],