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/Icu/composer.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/Intl/Icu/composer.json (limited to 'src/Intl/Icu/composer.json') diff --git a/src/Intl/Icu/composer.json b/src/Intl/Icu/composer.json new file mode 100644 index 0000000..b72c286 --- /dev/null +++ b/src/Intl/Icu/composer.json @@ -0,0 +1,34 @@ +{ + "name": "symfony/polyfill-intl-icu", + "type": "library", + "description": "Symfony polyfill for intl's ICU-related data and classes", + "keywords": ["polyfill", "shim", "compatibility", "portable", "intl", "icu"], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=5.3.3", + "symfony/intl": "~2.3|~3.0|~4.0|~5.0" + }, + "autoload": { + "files": [ "bootstrap.php" ] + }, + "suggest": { + "ext-intl": "For best performance" + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "1.13-dev" + } + } +} -- cgit