The oldschool dirname() was use to traverse one level up.
This has few downsides:
- the IDE file link does not always (depends on combination of .. and dirname()
- the full absolute path is clearly readable by human
- PHPStan custom rule support works better with easy to read strings
-dirname(__DIR__) . '/vendor/autoload.php';
+__DIR__ . '/../vendor/autoload.php';