Fast Forward Framework is a lightweight aggregate metapackage that installs the core Fast Forward stack through a single dependency and a single service-provider bootstrap.
- 🎯 One-command installation of core Fast Forward packages
- 🧩 Aggregates HTTP and event-dispatcher infrastructure with container integration
- 🚀 Compatible with modern PHP standards (PSR-7, PSR-11, PSR-14, PSR-17, PSR-18, PSR-20)
- 🧱 Built as the foundation layer for Fast Forward applications
composer require fast-forward/frameworkRequirements:
- PHP 8.3 or higher
<?php
declare(strict_types=1);
use FastForward\Framework\ServiceProvider\FrameworkServiceProvider;
use Psr\Clock\ClockInterface;
use Psr\EventDispatcher\EventDispatcherInterface;
use Psr\Http\Message\ResponseFactoryInterface;
use function FastForward\Container\container;
require __DIR__ . '/vendor/autoload.php';
$container = container([FrameworkServiceProvider::class]);
$responseFactory = $container->get(ResponseFactoryInterface::class);
$dispatcher = $container->get(EventDispatcherInterface::class);
$clock = $container->get(ClockInterface::class);FastForward\Framework\ServiceProvider\FrameworkServiceProviderfast-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
- Test suite: GitHub Actions
- Coverage:
coverage/index.html - Testdox:
coverage/testdox.html - Metrics:
metrics/index.html
Contributions, issues, and feature requests are welcome. Keep changes focused and aligned with the repository's existing documentation and contribution flow.
Fast Forward Framework is licensed under the MIT license.
Developed by Felipe Sayão Lobato Abreu
