I want to use the ftpd Adapter in Laravel to access a Synology NAS, which seems to need this specific adapter https://github.com/thephpleague/flysystem/issues/305, but I get the error
Driver [Ftpd] is not supported.
The file is there:
vendor/league/flysystem/src/Adapter/Ftpd.php
Do I have to register anything that I can use it?
I tried to use it in filesystems.php like this
'diskstation' => [
'driver' => 'Ftpd',
'host' => 'ftp.domain.com',
'username' => '****',
'password' => '****',
// Optional FTP Settings...
'port' => 21,
'root' => '',
'passive' => true,
'ssl' => false,
'timeout' => 10,
],