From 3a2346b260a67be163c35f0009861fc605703ef2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 19 Aug 2020 08:01:44 +0200 Subject: update to 1.1.3 (no change) --- composer.json | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 48c05e5..4d27306 100644 --- a/composer.json +++ b/composer.json @@ -3,31 +3,45 @@ "type": "library", "description": "Flexible and feature-complete Redis client for PHP and HHVM", "keywords": ["nosql", "redis", "predis"], - "homepage": "http://github.com/nrk/predis", + "homepage": "http://github.com/predis/predis", "license": "MIT", "support": { - "issues": "https://github.com/nrk/predis/issues" + "issues": "https://github.com/predis/predis/issues" }, "authors": [ { "name": "Daniele Alessandri", "email": "suppakilla@gmail.com", - "homepage": "http://clorophilla.net" + "homepage": "http://clorophilla.net", + "role": "Creator & Maintainer" + }, + { + "name": "Till Krüss", + "homepage": "https://till.im", + "role": "Maintainer" + } + ], + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/tillkruss" } ], "require": { - "php": ">=5.3.9", - "cweagans/composer-patches": "^1.6" + "php": ">=5.3.9" }, "require-dev": { - "phpunit/phpunit": "~4.8" + "phpunit/phpunit": "~4.8", + "cweagans/composer-patches": "^1.6" }, "suggest": { "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol", "ext-curl": "Allows access to Webdis when paired with phpiredis" }, "autoload": { - "psr-4": {"Predis\\": "src/"} + "psr-4": { + "Predis\\": "src/" + } }, "extra": { "composer-exit-on-patch-failure": true, -- cgit