composer.json 740 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name":"codeception/module-filesystem",
  3. "description":"Codeception module for testing local filesystem",
  4. "keywords":["codeception", "filesystem"],
  5. "homepage":"http://codeception.com/",
  6. "type":"library",
  7. "license":"MIT",
  8. "authors":[
  9. {
  10. "name":"Michael Bodnarchuk"
  11. },
  12. {
  13. "name":"Gintautas Miselis"
  14. }
  15. ],
  16. "minimum-stability": "RC",
  17. "require": {
  18. "php": ">=5.6.0 <9.0",
  19. "codeception/codeception": "^4.0",
  20. "symfony/finder": ">=2.7 <6.0"
  21. },
  22. "conflict": {
  23. "codeception/codeception": "<4.0"
  24. },
  25. "autoload":{
  26. "classmap": ["src/"]
  27. },
  28. "config": {
  29. "classmap-authoritative": true
  30. }
  31. }