composer.json 730 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "symfony/filesystem",
  3. "type": "library",
  4. "description": "Provides basic utilities for the filesystem",
  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/polyfill-ctype": "~1.8"
  21. },
  22. "autoload": {
  23. "psr-4": { "Symfony\\Component\\Filesystem\\": "" },
  24. "exclude-from-classmap": [
  25. "/Tests/"
  26. ]
  27. },
  28. "minimum-stability": "dev"
  29. }