From 736966f098df9dde618fe8c0cbb6fdd9d6724806 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 28 Oct 2020 13:51:49 +0100 Subject: duplicate v4 --- src/Symfony/Component/Inflector/composer.json | 36 +++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/Symfony/Component/Inflector/composer.json (limited to 'src/Symfony/Component/Inflector/composer.json') diff --git a/src/Symfony/Component/Inflector/composer.json b/src/Symfony/Component/Inflector/composer.json new file mode 100644 index 0000000..7e3a4af --- /dev/null +++ b/src/Symfony/Component/Inflector/composer.json @@ -0,0 +1,36 @@ +{ + "name": "symfony/inflector", + "type": "library", + "description": "Symfony Inflector Component", + "keywords": [ + "string", + "inflection", + "singularize", + "pluralize", + "words", + "symfony" + ], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=7.1.3", + "symfony/polyfill-ctype": "~1.8" + }, + "autoload": { + "psr-4": { "Symfony\\Component\\Inflector\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev" +} -- cgit