From 17a72cd92fe4aa8bc81eb978eb8e0cbac0389721 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 28 Nov 2019 08:53:39 +0100 Subject: v1.13.0 --- src/Intl/Idn/composer.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/Intl/Idn/composer.json (limited to 'src/Intl/Idn/composer.json') diff --git a/src/Intl/Idn/composer.json b/src/Intl/Idn/composer.json new file mode 100644 index 0000000..428c13e --- /dev/null +++ b/src/Intl/Idn/composer.json @@ -0,0 +1,36 @@ +{ + "name": "symfony/polyfill-intl-idn", + "type": "library", + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "keywords": ["polyfill", "shim", "compatibility", "portable", "intl", "idn"], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=5.3.3", + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php72": "^1.9" + }, + "autoload": { + "psr-4": { "Symfony\\Polyfill\\Intl\\Idn\\": "" }, + "files": [ "bootstrap.php" ] + }, + "suggest": { + "ext-intl": "For best performance" + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "1.13-dev" + } + } +} -- cgit