You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Skip file_exists() guard on the hot path in prototype()/singleton() — an OPcache-cached require performs no filesystem access, so the guard was the only stat() syscall left [#134]
prototype()/singleton() now require the script directly without try/catch; a missing compiled script is a build invariant violation that surfaces as PHP 8's native catchable Error [#134]
Deprecate ScriptFileNotFound exception (kept for BC) [#134]
Remove redundant realpath() call in CompiledInjector::getInstance() [#134]
Resolve #[ScriptDir] to __DIR__ instead of baking the compile-time absolute path [#136]