composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "phpunit/php-file-iterator",
  3. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4. "type": "library",
  5. "keywords": [
  6. "iterator",
  7. "filesystem"
  8. ],
  9. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10. "license": "BSD-3-Clause",
  11. "authors": [
  12. {
  13. "name": "Sebastian Bergmann",
  14. "email": "sebastian@phpunit.de",
  15. "role": "lead"
  16. }
  17. ],
  18. "support": {
  19. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues"
  20. },
  21. "config": {
  22. "platform": {
  23. "php": "7.3.0"
  24. },
  25. "optimize-autoloader": true,
  26. "sort-packages": true
  27. },
  28. "prefer-stable": true,
  29. "require": {
  30. "php": ">=7.3"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^9.3"
  34. },
  35. "autoload": {
  36. "classmap": [
  37. "src/"
  38. ]
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "3.0-dev"
  43. }
  44. }
  45. }