From 79304342a276e62abd5b46385dacda0b3c8b9459 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 11 Jun 2018 11:15:22 +0200 Subject: new package --- composer.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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/" + } + } +} -- cgit