composer.json 793 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "symfony/finder",
  3. "type": "library",
  4. "description": "Finds files and directories via an intuitive fluent interface",
  5. "keywords": [],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.2.5",
  20. "symfony/deprecation-contracts": "^2.1|^3",
  21. "symfony/polyfill-php80": "^1.16"
  22. },
  23. "autoload": {
  24. "psr-4": { "Symfony\\Component\\Finder\\": "" },
  25. "exclude-from-classmap": [
  26. "/Tests/"
  27. ]
  28. },
  29. "minimum-stability": "dev"
  30. }