Fast Forward Framework is a lightweight and fast PHP framework designed for building modern web applications. It provides a simple and elegant API, making it easy to develop and maintain your projects.

FrameworkServiceProvider

.. php:class:: FastForward\Framework\ServiceProvider\FrameworkServiceProvider

Aggregates all core service providers required to initialize the application container.

Usage:

use FastForward\Framework\ServiceProvider\FrameworkServiceProvider;
use FastForward\Container\Container;

$container = new Container([
    new FrameworkServiceProvider(),
]);

Constructor:

.. php:method:: __construct()

Initializes the aggregate service provider with all essential framework service providers (e.g., HTTP, logging, caching, etc.).

Extends:

Search results