Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Changelog

All notable changes to this project will be documented in this file.
Expand All @@ -12,6 +12,8 @@
- Add changelog history for releases v1.0.0-v1.3.0 during dev-tools asset synchronization. (#3)
- Sync latest Fast Forward dev-tools managed assets (workflow templates, governance metadata, agents, and skills) into this repository. (#3)
- Add repository AGENTS.md for agent task orchestration and local onboarding flow.
- Add ``fast-forward/enum`` as an installed package in the framework metapackage and
document its presence in package surface guidance. (#6)

### Changed

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ $clock = $container->get(ClockInterface::class);
## 🔌 Package Surface

- `FastForward\Framework\ServiceProvider\FrameworkServiceProvider`
- `fast-forward/enum` (enum utilities and value object helpers included by composition)
- Core HTTP and event-dispatcher service provider orchestration
- Shared configuration and lifecycle defaults for core packages in the ecosystem

Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"fast-forward/config": "^1.4",
"fast-forward/container": "^1.5",
"fast-forward/defer": "^1.0",
"fast-forward/enum": "^0.1",
"fast-forward/event-dispatcher": "^1.0",
"fast-forward/fork": "^1.0",
"fast-forward/http": "^1.0",
Expand Down
4 changes: 2 additions & 2 deletions docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ Are all installed packages automatically available from the container?
---------------------------------------------------------------------

No. ``fast-forward/config``, ``fast-forward/defer``, ``fast-forward/fork``, and
``fast-forward/iterators`` are installed, but they are not automatically registered in the
container by ``FrameworkServiceProvider``.
``fast-forward/iterators`` and ``fast-forward/enum`` are installed, but they are not
automatically registered in the container by ``FrameworkServiceProvider``.

How do I build the container?
-----------------------------
Expand Down
5 changes: 4 additions & 1 deletion docs/getting-started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Install the metapackage with Composer:
composer require fast-forward/framework

This single command installs the Fast Forward container, configuration helpers, HTTP stack,
event-dispatcher stack, deferred callback utilities, iterator helpers, and process-management tools.
event-dispatcher stack, deferred callback utilities, enum helpers, iterator helpers, and process-management tools.

Requirements
------------
Expand Down Expand Up @@ -47,6 +47,9 @@ one local service provider class, while Composer pulls in the runtime libraries
* - ``fast-forward/fork``
- Parallel worker orchestration for CLI workloads
- No
* - ``fast-forward/enum``
- Enum and value-object helper abstractions for explicit domain modeling
- No
* - ``fast-forward/iterators``
- Iterator utilities for grouping, chunking, lookahead, and related data flows
- No
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Documentation

- a PSR-11 friendly container workflow
- the Fast Forward HTTP and event-dispatcher service-provider stacks
- access to supporting packages such as configuration, deferred callbacks, iterators, and process tools
- access to supporting packages such as configuration, deferred callbacks, enum helpers, iterators, and process tools

.. container:: col-lg-5 text-center

Expand Down
4 changes: 4 additions & 0 deletions docs/links/dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ Direct runtime packages
- Parallel worker orchestration for CLI applications
- No
- `Docs <https://github.com/php-fast-forward/fork>`_
* - ``fast-forward/enum``
- Enum abstractions and value-object helpers for safer domain modeling
- No
- `Docs <https://github.com/php-fast-forward/enum>`_
* - ``fast-forward/iterators``
- Iterator utilities for chunking, grouping, lookahead, and data traversal
- No
Expand Down
Loading