composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy"
  21. },
  22. "config": {
  23. "platform": {
  24. "php": "8.1.0"
  25. },
  26. "optimize-autoloader": true,
  27. "sort-packages": true
  28. },
  29. "prefer-stable": true,
  30. "require": {
  31. "php": ">=8.1"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^10.0"
  35. },
  36. "autoload": {
  37. "classmap": [
  38. "src/"
  39. ]
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-main": "4.0-dev"
  44. }
  45. }
  46. }