fast-forward/framework

Fast Forward Framework — a lightweight PHP framework for building modern web applications with a simple and elegant API.

Maintainers

Package info

github.com/php-fast-forward/framework

Homepage

pkg:composer/fast-forward/framework

Fund package maintenance!

php-fast-forward

Statistics

Installs: 47

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.3.0 2026-03-29 14:00 UTC

This package is auto-updated.

Last update: 2026-04-08 19:12:08 UTC


README

PHP Version Tests Coverage Docs License GitHub Sponsors

PSR-7 PSR-11 PSR-14 PSR-17 PSR-18 PSR-20

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