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.
- 🚀 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
<?php
declare(strict_types=1);
use FastForward\Framework\ServiceProvider\FrameworkServiceProvider;
use function FastForward\Container\container;
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);Install via Composer:
composer require fast-forward/frameworkThis command will automatically pull in all the required dependencies of the framework.
- PHP 8.3 or higher
Fast Forward Framework is licensed under the MIT license.
Developed with ❤️ by Felipe Sayão Lobato Abreu
📧 github@mentordosnerds.com