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/Uuid/composer.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/Uuid/composer.json (limited to 'src/Uuid/composer.json') diff --git a/src/Uuid/composer.json b/src/Uuid/composer.json new file mode 100644 index 0000000..8d5d142 --- /dev/null +++ b/src/Uuid/composer.json @@ -0,0 +1,34 @@ +{ + "name": "symfony/polyfill-uuid", + "type": "library", + "description": "Symfony polyfill for uuid functions", + "keywords": ["polyfill", "compatibility", "portable", "uuid"], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=7" + }, + "autoload": { + "psr-4": { "Symfony\\Polyfill\\Uuid\\": "" }, + "files": [ "bootstrap.php" ] + }, + "suggest": { + "ext-uuid": "For best performance" + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "1.13-dev" + } + } +} -- cgit