fast-forward / framework
Fast Forward Framework — a lightweight PHP framework for building modern web applications with a simple and elegant API.
Fund package maintenance!
v1.3.0
2026-03-29 14:00 UTC
Requires
- php: ^8.3
- fast-forward/config: ^1.4
- fast-forward/container: ^1.5
- fast-forward/defer: ^1.0
- fast-forward/http: ^1.0
- fast-forward/iterators: ^1.0
Requires (Dev)
- fast-forward/dev-tools: dev-main
README
Fast Forward Framework is a lightweight and fast PHP framework designed for building modern web and event-driven applications. This package serves as an aggregate metapackage, bundling all core components of the Fast Forward ecosystem for easier installation and management.
Features
- 🚀 Modern PHP 8.3+ syntax
- 📦 Simplifies installation of all core packages in one step
- 🔌 Registers the Fast Forward HTTP and event-dispatcher stacks through a single framework provider
- 🧱 Provides a solid foundation for building scalable PHP applications
Usage
<?php declare(strict_types=1); use FastForward\Framework\ServiceProvider\FrameworkServiceProvider; use function FastForward\Container\container; use Psr\Clock\ClockInterface; use Psr\EventDispatcher\EventDispatcherInterface; use Psr\Http\Message\ResponseFactoryInterface; require_once __DIR__ . '/vendor/autoload.php'; $container = container(new FrameworkServiceProvider()); $responseFactory = $container->get(ResponseFactoryInterface::class); $dispatcher = $container->get(EventDispatcherInterface::class); $clock = $container->get(ClockInterface::class);
Installation
Install via Composer:
composer require fast-forward/framework
This command will automatically pull in all the required dependencies of the framework.
Requirements
- PHP 8.3 or higher
License
Fast Forward Framework is licensed under the MIT license.
Author
Developed with ❤️ by Felipe Sayão Lobato Abreu
📧 github@mentordosnerds.com