diff options
Diffstat (limited to 'src/Deprecation')
-rw-r--r-- | src/Deprecation/composer.json | 36 |
1 files changed, 36 insertions, 0 deletions
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" + } + } +} |