diff options
Diffstat (limited to 'src/Symfony/Component/Filesystem')
-rw-r--r-- | src/Symfony/Component/Filesystem/composer.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/Symfony/Component/Filesystem/composer.json b/src/Symfony/Component/Filesystem/composer.json new file mode 100644 index 0000000..95df9d3 --- /dev/null +++ b/src/Symfony/Component/Filesystem/composer.json @@ -0,0 +1,29 @@ +{ + "name": "symfony/filesystem", + "type": "library", + "description": "Symfony Filesystem Component", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=7.1.3", + "symfony/polyfill-ctype": "~1.8" + }, + "autoload": { + "psr-4": { "Symfony\\Component\\Filesystem\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev" +} |