File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 22
33[ ![ License: MIT] ( https://img.shields.io/badge/license-MIT-blue.svg )] ( LICENSE )
44[ ![ PHP Version] ( https://img.shields.io/badge/php-^8.3-blue.svg )] ( https://www.php.net/releases/ )
5+ [ ![ PSR-7] ( https://img.shields.io/badge/PSR_7-http--message-777bb4.svg )] ( https://www.php-fig.org/psr/psr-7/ )
6+ [ ![ PSR-11] ( https://img.shields.io/badge/PSR--11-container-777bb4.svg )] ( https://www.php-fig.org/psr/psr-11/ )
7+ [ ![ PSR-14] ( https://img.shields.io/badge/PSR--14-event--dispatcher-777bb4.svg )] ( https://www.php-fig.org/psr/psr-14/ )
8+ [ ![ PSR-17] ( https://img.shields.io/badge/PSR_17-http--factory-777bb4.svg )] ( https://www.php-fig.org/psr/psr-7/ )
9+ [ ![ PSR-18] ( https://img.shields.io/badge/PSR_18-http--client-777bb4.svg )] ( https://www.php-fig.org/psr/psr-7/ )
10+ [ ![ PSR-20] ( https://img.shields.io/badge/PSR--20-clock-777bb4.svg )] ( https://www.php-fig.org/psr/psr-20/ )
511
612** Fast Forward Framework** is a lightweight and fast PHP framework designed for building modern web
713and event-driven applications.
@@ -25,6 +31,7 @@ declare(strict_types=1);
2531
2632use FastForward\Framework\ServiceProvider\FrameworkServiceProvider;
2733use function FastForward\Container\container;
34+ use Psr\Clock\ClockInterface;
2835use Psr\EventDispatcher\EventDispatcherInterface;
2936use Psr\Http\Message\ResponseFactoryInterface;
3037
@@ -34,6 +41,7 @@ $container = container(new FrameworkServiceProvider());
3441
3542$responseFactory = $container->get(ResponseFactoryInterface::class);
3643$dispatcher = $container->get(EventDispatcherInterface::class);
44+ $clock = $container->get(ClockInterface::class);
3745```
3846
3947---
You can’t perform that action at this time.
0 commit comments