diff options
Diffstat (limited to 'src/Uuid/composer.json')
-rw-r--r-- | src/Uuid/composer.json | 34 |
1 files changed, 34 insertions, 0 deletions
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" + } + } +} |