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 --- src/Deprecation/composer.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/Deprecation/composer.json (limited to 'src/Deprecation/composer.json') diff --git a/src/Deprecation/composer.json b/src/Deprecation/composer.json new file mode 100644 index 0000000..27aa491 --- /dev/null +++ b/src/Deprecation/composer.json @@ -0,0 +1,36 @@ +{ + "name": "symfony/deprecation-contracts", + "type": "library", + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=7.1" + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-version": "2.3", + "branch-alias": { + "dev-main": "2.3-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + } +} -- cgit