diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..6366d0a --- /dev/null +++ b/composer.json @@ -0,0 +1,35 @@ +{ + "name": "aura/intl", + "type": "library", + "description": "The Aura Intl package provides internationalization tools, specifically message translation.", + "keywords": [ + "intl", + "internationalization", + "i18n", + "l10n", + "localization", + "globalization", + "g11n" + ], + "homepage": "https://github.com/auraphp/Aura.Intl", + "license": "MIT", + "authors": [ + { + "name": "Aura.Intl Contributors", + "homepage": "https://github.com/auraphp/Aura.Intl/contributors" + } + ], + "require": { + "php": "^5.6|^7.0" + }, + "autoload": { + "psr-4": { + "Aura\\Intl\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Aura\\Intl\\": "tests/" + } + } +} |