Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- JsonApiResponseFactory::createResponse() `meta` and `links` arguments
- CacheableDispatcherFactoryProxy

### Changed
- Best composer dependencies compatibility: allow more versions

## [0.0.13] - 2021-01-27
### Added
- TraceIntoDetailsExplainingErrorFactory for catched ErrorHandler exceptions debug. Note: not for production usage
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM php:8-cli

RUN apt-get update \
&& apt-get install -y \
git \
libzip-dev \
unzip \
libicu-dev
Expand Down
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@
"ext-intl": "*",
"ext-json": "*",
"cebe/php-openapi": "1.4.*",
"fig/http-message-util": "^1.1",
"doctrine/persistence": "^2.0",
"fig/http-message-util": "^1.0",
"free-elephants/i18n": "^0.0.1",
"laminas/laminas-stratigility": "^3.2",
"league/openapi-psr7-validator": "0.14",
"league/openapi-psr7-validator": "0.14|^0.15|^0.16",
"neomerx/json-api": "^4.0",
"nette/php-generator": "^3.4",
"nikic/fast-route": "^1.3",
"psr/cache": "^1.0",
"psr/cache": "^1|^2|^3",
"psr/container": "^1|^2",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
Expand All @@ -31,8 +33,7 @@
"ramsey/uuid": "^3.0|^4.0"
},
"require-dev": {
"doctrine/orm": "^2.7",
"helmich/phpunit-psr7-assert": "dev-master#c7c75e8",
"helmich/phpunit-psr7-assert": "^4",
"nyholm/psr7": "^1.2",
"phpunit/phpunit": "^9.0"
},
Expand Down
1 change: 0 additions & 1 deletion src/FreeElephants/JsonApiToolkit/DTO/AbstractDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace FreeElephants\JsonApiToolkit\DTO;

use Psr\Http\Message\MessageInterface;
use Psr\Http\Message\ServerRequestInterface;

/**
* @property AbstractResourceObject|mixed $data
Expand Down