Няма описание

composer.json 884B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "require": {
  22. "php": ">=7.1"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^8.5"
  26. },
  27. "autoload": {
  28. "classmap": [
  29. "src/"
  30. ]
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "2.0.x-dev"
  35. }
  36. }
  37. }