* feat: persist UI state
* test: fix var declaration
* test: increate e2e timeout
sometimes there might be a network latency to load CDN assets like the fonts. Let's give the tests a maximum of 1 minute to fully run.
* build: run E2E tests with the current branch
* style: apply php style fixes
* build: cache PW browsers in GHA
* build: fix step name
* build: require branch name as argument for e2e setup
* chore: improve the e2e setup file traceability
* chore: improve file comment
* build: pass branch name as argument for e2e setup
* build: attempt to fix PW browser cache in GHA
* build: fix syntax issue with the e2e GHA
* build: also cache php installation for e2e test
* build: attempt to fix PW browsers cache
* build: don't attempt to cache php installation in e2e
it cannot be cached because it is installed in temporary runner directory
* chore: setup E2E foundation
* chore: use http to clone the repo
this will make it work in GHA (no SSH is needed).
* chore: add missing dependencies to e2e ci
* feat: tag alongside laravel-assets
Laravel assets are configured by default in Laravel to be published post update.
We always want to force-publish the assets with Nimbus, so let's tag alongside them.
* refactor: apply rector
* style: apply php style fixes
This commit represents the complete foundational codebase for Nimbus Alpha, a Laravel package that provides an integrated, in-browser API client with automatic schema discovery from validation rules.
IMPORTANT: This is a squashed commit representing the culmination of extensive development, refactoring, and architectural iterations. All previous commit history has been intentionally removed to provide a clean foundation for the public alpha release.
The development of Nimbus involved:
- Multiple architectural refactorings
- Significant structural changes
- Experimental approaches that were later abandoned
- Learning iterations on the core concept
- Migration between different design patterns
This messy history would:
- Make git blame confusing and unhelpful
- Obscure the actual intent behind current implementation
- Create noise when reviewing changes
- Reference deleted or refactored code
If git blame brought you to this commit, it means you're looking at code that was part of the initial alpha release. Here's what to do:
1. Check Current Documentation
- See `/wiki/contribution-guide/README.md` for architecture details
- Review the specific module's README if available
- Look for inline comments explaining the reasoning
2. Look for Related Code
- Check other files in the same module
- Look for tests that demonstrate intended behavior
- Review interfaces and contracts
3. Context Matters
- This code may have been updated since alpha
- Check git log for subsequent changes to this file
- Look for related issues or PRs on GitHub
---
This commit marks the beginning of Nimbus's public journey. All future
commits will build upon this foundation with clear, traceable history.
Thank you for using or contributing to Nimbus!