Skip to content

Commit

Permalink
feat: BREAKING CHANGE use Laminas instead of Zend
Browse files Browse the repository at this point in the history
  • Loading branch information
Pieter Zandbergen committed Feb 21, 2024
1 parent b0f11d6 commit f136755
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"guzzlehttp/guzzle": "^7.4",
"psr/log": "~1.0",
"psr/container": "~1.0",
"symfony/serializer": "^4.3"
"symfony/serializer": "^4.3",
"laminas/laminas-diactoros": "*"
},
"type": "library",
"autoload": {
Expand Down
3 changes: 1 addition & 2 deletions src/Server/RestApiServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@
namespace Emico\RobinHqLib\Server;


use Emico\RobinHqLib\Config\Config;
use Emico\RobinHqLib\Config\ConfigInterface;
use Emico\RobinHqLib\DataProvider\DataProviderInterface;
use Emico\RobinHqLib\DataProvider\Exception\DataNotFoundException;
use Emico\RobinHqLib\DataProvider\Exception\InvalidRequestException;
use Exception;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Zend\Diactoros\Response\JsonResponse;
use Laminas\Diactoros\Response\JsonResponse;

class RestApiServer
{
Expand Down

0 comments on commit f136755

Please sign in to comment.