composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "codeception/module-symfony",
  3. "description": "Codeception module for Symfony framework",
  4. "keywords": ["codeception", "symfony"],
  5. "homepage": "https://codeception.com/",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Michael Bodnarchuk"
  11. },
  12. {
  13. "name": "Gustavo Nieves",
  14. "homepage": "https://medium.com/@ganieves"
  15. }
  16. ],
  17. "minimum-stability": "RC",
  18. "require": {
  19. "php": "^7.3 | ^8.0",
  20. "ext-json": "*",
  21. "codeception/lib-innerbrowser": "^1.4",
  22. "codeception/codeception": "^4.0"
  23. },
  24. "require-dev": {
  25. "codeception/module-asserts": "^1.3",
  26. "codeception/module-doctrine2": "^1.1",
  27. "vlucas/phpdotenv": "^4.2 | ^5.3"
  28. },
  29. "suggest": {
  30. "codeception/module-asserts": "Include traditional PHPUnit assertions in your tests",
  31. "symfony/web-profiler-bundle": "Tool that gives information about the execution of requests"
  32. },
  33. "autoload": {
  34. "classmap": ["src/"]
  35. },
  36. "config": {
  37. "classmap-authoritative": true
  38. }
  39. }