This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Intl/composer.json

50 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "symfony/intl",
"type": "library",
"description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
"keywords": ["intl", "icu", "internationalization", "localization", "i18n", "l10n"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Bernhard Schussek",
"email": "bschussek@gmail.com"
},
{
"name": "Eriksen Costa",
"email": "eriksen.costa@infranology.com.br"
},
{
"name": "Igor Wiedler",
"email": "igor@wiedler.ch"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
"php": ">=5.5.9",
"symfony/polyfill-intl-icu": "~1.0"
},
"require-dev": {
"symfony/filesystem": "~2.8|~3.0"
},
"suggest": {
"ext-intl": "to use the component with locales other than \"en\""
},
"autoload": {
2014-06-20 20:32:40 +01:00
"psr-4": { "Symfony\\Component\\Intl\\": "" },
2014-12-07 17:26:22 +00:00
"classmap": [ "Resources/stubs" ],
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
2014-11-11 08:37:22 +00:00
"dev-master": "3.0-dev"
}
}
}