From c0113290bb5f0c22ff8d9c5388078d1ebb1578ef Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 3 Jun 2019 13:34:43 +0200 Subject: v1.1.2 --- src/Translation/composer.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/Translation/composer.json (limited to 'src/Translation/composer.json') diff --git a/src/Translation/composer.json b/src/Translation/composer.json new file mode 100644 index 0000000..09749d3 --- /dev/null +++ b/src/Translation/composer.json @@ -0,0 +1,33 @@ +{ + "name": "symfony/translation-contracts", + "type": "library", + "description": "Generic abstractions related to translation", + "keywords": ["abstractions", "contracts", "decoupling", "interfaces", "interoperability", "standards"], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": "^7.1.3" + }, + "suggest": { + "symfony/translation-implementation": "" + }, + "autoload": { + "psr-4": { "Symfony\\Contracts\\Translation\\": "" } + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + } +} -- cgit