I am now running the latest versions of MW and phpBB. Everything still works.
There is one bug with phpBB that may cause an error. It requires changing the follow line in /phpbb/path_helper.php (line 230-233)
Change from:
// Prepend ../ to the phpbb_root_path as many times as / exists in path_info $this->web_root_path = $this->filesystem->clean_path( './' . str_repeat('../', $corrections) . $this->phpbb_root_path );
To this:
// Prepend ../ to the phpbb_root_path as many times as / exists in path_info
$this->web_root_path = $this->filesystem->clean_path(
'./' . str_repeat('../', $corrections > 0 ? $corrections : 0) . $this->phpbb_root_path
);