Skip to content

Commit

Permalink
Merge branch '6.x' into 7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Aug 14, 2020
2 parents c17b6a1 + cb75c89 commit 8f22cab
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 8 deletions.
1 change: 1 addition & 0 deletions composer.json
Expand Up @@ -139,6 +139,7 @@
"nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
"pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
"phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).",
"predis/predis": "Required to use the predis connector (^1.1.2).",
"psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
"pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
"symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
Expand Down
3 changes: 0 additions & 3 deletions src/Illuminate/Redis/Connections/PredisClusterConnection.php
Expand Up @@ -2,9 +2,6 @@

namespace Illuminate\Redis\Connections;

/**
* @deprecated Predis is no longer maintained by its original author
*/
class PredisClusterConnection extends PredisConnection
{
//
Expand Down
1 change: 0 additions & 1 deletion src/Illuminate/Redis/Connections/PredisConnection.php
Expand Up @@ -9,7 +9,6 @@

/**
* @mixin \Predis\Client
* @deprecated Predis is no longer maintained by its original author
*/
class PredisConnection extends Connection implements ConnectionContract
{
Expand Down
3 changes: 0 additions & 3 deletions src/Illuminate/Redis/Connectors/PredisConnector.php
Expand Up @@ -8,9 +8,6 @@
use Illuminate\Support\Arr;
use Predis\Client;

/**
* @deprecated Predis is no longer maintained by its original author
*/
class PredisConnector implements Connector
{
/**
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Redis/composer.json
Expand Up @@ -25,7 +25,7 @@
},
"suggest": {
"ext-redis": "Required to use the phpredis connector (^4.0|^5.0).",
"predis/predis": "Required to use the predis connector (^1.0)."
"predis/predis": "Required to use the predis connector (^1.1.2)."
},
"extra": {
"branch-alias": {
Expand Down

0 comments on commit 8f22cab

Please sign in to comment.