Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.84 KB

File metadata and controls

44 lines (33 loc) · 1.84 KB

AGENTS - Fast Forward Framework

This repository is a PHP metapackage (fast-forward/framework) that aggregates and wires core Fast Forward components through a single provider entry point.

Repository surfaces

Setup and local workflow

  • Run composer install before making any code changes.
  • Keep local runtime aligned to PHP 8.3 (project minimum).
  • Run full local validation with:
    • composer dev-tools
  • Apply auto-fixes and generated file synchronization with:
    • composer dev-tools:fix
  • Validate changelog discipline on PR branches with:
    • composer dev-tools changelog:check -- --against=refs/remotes/origin/main

Testing and quality gates

Documentation conventions

  • Keep docs consistent with metapackage usage snippets and avoid instantiating providers directly when the ::class shorthand is the canonical documented pattern.
  • Use FrameworkServiceProvider::class in documented bootstrap examples per current standards.

PR and review expectations

  • When making user-visible changes, add an entry under ## [Unreleased] in CHANGELOG.md.
  • Prefer concise entry wording and include the current PR reference when known.