Bootstrap self-wiring: auto-register framework services - #162
Merged
Conversation
Every app needs this, no variation. Eliminates a manual step from bootstrap files that every from-scratch user would have to discover. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…trap Both kernels register Bus (deferred factory reading app.debug) and EventDispatcher with has() guards. HyperKernel also registers ServerAdapter, Server, and EmptyResponseRenderer. Apps can override before or after bootstrap — guards skip pre-existing registrations. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Verifies that a minimal bootstrap (container + kernel binding only) produces a working container with Bus, EventDispatcher, ServerAdapter, Server, EmptyResponseRenderer, and container interfaces all resolvable. Also verifies the has() guard lets apps override Bus before bootstrap. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Add "What the framework auto-registers" section listing container, bus, event dispatcher, and HTTP services with their override points. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Container::__construct()now registers the container instance under bothApplicationandContainerInterfaceautomatically. No more manual step in bootstrap files.HyperKernelandRuneKernelauto-registerBus(deferred factory readingapp.debug) andEventDispatcherInterface(Echo Dispatcher) withhas()guards so apps can override before or after bootstrap.ServerAdapter,Server, andEmptyResponseRendererauto-registered withhas()guards.has()guard lets apps override Bus before bootstrap.willReturnMapcalls towillReturnCallbackwith defaultfalse, making tests resilient to newhas()calls in bootstrap.Test plan
composer checkpasses (cs-fix, cs-check, phpstan level 9, phpunit — 2836 tests, 5723 assertions)BootstrapSelfWiringTestcovers HyperKernel, RuneKernel, and Bus override scenariosContainerTest🤖 Generated with Claude Code