Skip to content

Commit

Permalink
Merge pull request #147 from patchlevel/upgrade-psr-packages
Browse files Browse the repository at this point in the history
upgrade psr packages
  • Loading branch information
DavidBadura authored Dec 23, 2021
2 parents 68d3dcb + 0b0ee90 commit bd4b397
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"require": {
"php": "~8.0.0|~8.1.0",
"doctrine/dbal": "^3.2.0",
"psr/cache": "^1.0.1|^2.0.0",
"psr/simple-cache": "^1.0.1|^2.0.0"
"psr/cache": "^2.0.0|^3.0.0",
"psr/simple-cache": "^2.0.0|^3.0.0"
},
"require-dev": {
"ext-pdo_sqlite": "~8.0.0|~8.1.0",
Expand Down
28 changes: 14 additions & 14 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/Unit/Snapshot/Psr6SnapshotStoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function testSaveSnapshot(): void
$item->set([
'playhead' => 0,
'payload' => ['foo' => 'bar'],
])->shouldBeCalled();
])->shouldBeCalled()->willReturn($item);

$cache = $this->prophesize(CacheItemPoolInterface::class);
$cache->getItem(sprintf('%s-1', ProfileWithSnapshot::class))->willReturn($item);
Expand Down

0 comments on commit bd4b397

Please sign in to comment.