This repository was archived by the owner on May 30, 2025. It is now read-only.
Releases: icewind1991/SMB
Releases · icewind1991/SMB
2.0.2
- Improve read and write performance when working with large files when using the php-smbclient backend.
2.0.1
- Fix
notify
sometimes calling the callback withnull
2.0.0
- Dropped support for php5.3
- Added support for running
notify
in the background - Changed
notify
listen support in a backwards compatible way
1.1.x:
$share->notify('', function ($code, $path) {
echo $code . ': ' . $path . "\n";
});
2.0.0:
$share->notify('')->listen(function (\Icewind\SMB\Change $change) {
echo $change->getCode() . ': ' . $change->getPath() . "\n";
});
1.1.2
- Explicitly check if
smbclient
is installed before we try to use it
1.1.1
- Make the dependency on stdbuf optional for everything but
notify
1.1.0
Add support for the smb notify command to watch a remote share for changes
Note that at the moment this uses smbclient wrapping for both backends due to the lack of support for notify in php-smbclient (eduardok/libsmbclient-php#29)
1.0.8
Workaround for an upstream bug using fstat and dfs shares
1.0.7
only set minumum required streams version
1.0.6
- Properly handle errors in stream_stat
1.0.5
Improved detection and reporting of errors