From eee920164a1a93e0456d247a082d56246685c46d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 28 Oct 2020 15:22:29 +0100 Subject: update to 2.3.1 rename to php-symfony-contracts2 install in /usr/share/php/Symfony/Contracts2 raise dependency on PHP 7.2.5 add symfony/deprecation-contracts --- composer.json | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 4ac096e..eecf327 100644 --- a/composer.json +++ b/composer.json @@ -16,22 +16,23 @@ } ], "require": { - "php": ">=7.1.3", + "php": ">=7.2.5", "psr/cache": "^1.0", - "psr/container": "^1.0" + "psr/container": "^1.0", + "psr/event-dispatcher": "^1.0" }, "require-dev": { "symfony/polyfill-intl-idn": "^1.10" }, "replace": { "symfony/cache-contracts": "self.version", + "symfony/deprecation-contracts": "self.version", "symfony/event-dispatcher-contracts": "self.version", "symfony/http-client-contracts": "self.version", "symfony/service-contracts": "self.version", "symfony/translation-contracts": "self.version" }, "suggest": { - "psr/event-dispatcher": "When using the EventDispatcher contracts", "symfony/cache-implementation": "", "symfony/event-dispatcher-implementation": "", "symfony/http-client-implementation": "", @@ -40,14 +41,16 @@ }, "autoload": { "psr-4": { "Symfony\\Contracts\\": "" }, + "files": [ "Deprecation/function.php" ], "exclude-from-classmap": [ "**/Tests/" ] }, "minimum-stability": "dev", "extra": { + "branch-version": "2.3", "branch-alias": { - "dev-master": "1.1-dev" + "dev-main": "2.3-dev" } } } -- cgit