Skip to content

Commit 302aa8e

Browse files
committed
Bumped some dependencies
1 parent d60d47d commit 302aa8e

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

bin/ci/scripts/install_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
composer self-update
44
composer validate
55
composer install
6-
composer require -W doctrine/couchdb:dev-master phpfastcache/phpssdb:~1.1.0 predis/predis:~1.1.0 mongodb/mongodb:^1.9 triagens/arangodb:^3.8 aws/aws-sdk-php:~3.0 google/cloud-firestore:^1.20 solarium/solarium:~6.1
6+
composer require -W doctrine/couchdb:dev-master phpfastcache/phpssdb:~1.1 predis/predis:~1.1 mongodb/mongodb:~1.10 triagens/arangodb:~3.8 aws/aws-sdk-php:~3.2 google/cloud-firestore:~1.20 solarium/solarium:~6.1

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
"ext-json": "*"
2727
},
2828
"require-dev": {
29-
"league/climate": "^3.5",
29+
"league/climate": "^3.8",
3030
"ext-gettext": "*",
3131
"phpmd/phpmd": "@stable",
32-
"squizlabs/php_codesniffer": "~3.0",
33-
"phpstan/phpstan": "^0.12.98",
32+
"squizlabs/php_codesniffer": "@stable",
33+
"phpstan/phpstan": "^1.5",
3434
"jetbrains/phpstorm-stubs": "dev-master"
3535
},
3636
"suggest": {

lib/Phpfastcache/Cluster/Drivers/FullReplication/Driver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function getItem(string $key): ExtendedCacheItemInterface
3030
{
3131
/** @var ExtendedCacheItemPoolInterface[] $poolsToResync */
3232
$poolsToResync = [];
33-
/** @var ExtendedCacheItemInterface $item */
33+
/** @var ?ExtendedCacheItemInterface $item */
3434
$item = null;
3535

3636
foreach ($this->clusterPools as $driverPool) {

lib/Phpfastcache/Cluster/Drivers/SemiReplication/Driver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Driver extends ClusterPoolAbstract
3131
*/
3232
public function getItem(string $key): ExtendedCacheItemInterface
3333
{
34-
/** @var ExtendedCacheItemInterface $item */
34+
/** @var ?ExtendedCacheItemInterface $item */
3535
$item = null;
3636
$eCount = 0;
3737

phpstan.neon

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ parameters:
1111
-
1212
message: '#Cannot call method getPayload\(\) on int#' # Issue in predis/predis => https://github.com/predis/predis/pull/710
1313
path: lib/Phpfastcache/Drivers/Predis/Driver.php
14+
-
15+
message: '#Offset (.*) on left side of \?\? does not exist#' # Issue in arangodb/arangodb-php => https://github.com/arangodb/arangodb-php/issues/293
16+
path: lib/Phpfastcache/Drivers/Arangodb/Driver.php

0 commit comments

Comments
 (0)