Now also work with Workerman/5
Update for 0.7.x to need PHP/8.1 as minimum.
Removed automatic session files clean, now it's manual.
When using debian, PHP autoclean the session files.
As we only need one worker to clean the session, We can create a new Adapterman worker to clean the files.
Or add in our on onWorkerStart :
if ($worker->id === 0) {
Timer::add(600, funct...