2023-07-28 16:22:20 -04:00
|
|
|
<?php
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
|
|
|
|
return [
|
2024-01-17 10:33:11 -03:00
|
|
|
Psr\Http\Message\StreamFactoryInterface::class => function(ContainerInterface $container) {
|
|
|
|
return $container->get(Nyholm\Psr7\Factory\Psr17Factory::class);
|
|
|
|
},
|
|
|
|
Psr\Http\Message\RequestFactoryInterface::class => function(ContainerInterface $container) {
|
|
|
|
return $container->get(Nyholm\Psr7\Factory\Psr17Factory::class);
|
|
|
|
},
|
2023-07-28 16:22:20 -04:00
|
|
|
Psr\Http\Message\ResponseFactoryInterface::class => function(ContainerInterface $container) {
|
|
|
|
return $container->get(Nyholm\Psr7\Factory\Psr17Factory::class);
|
2024-01-17 10:33:11 -03:00
|
|
|
},
|
2023-07-28 16:22:20 -04:00
|
|
|
];
|