composer.json 1005 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name":"codeception/module-phpbrowser",
  3. "description":"Codeception module for testing web application over HTTP",
  4. "keywords":["codeception", "http", "functional-testing"],
  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. "guzzlehttp/guzzle": "^6.3|^7.0",
  20. "codeception/lib-innerbrowser": "^1.3",
  21. "codeception/codeception": "^4.0"
  22. },
  23. "require-dev": {
  24. "codeception/module-rest": "^1.0"
  25. },
  26. "conflict": {
  27. "codeception/codeception": "<4.0"
  28. },
  29. "suggest": {
  30. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests"
  31. },
  32. "autoload":{
  33. "classmap": ["src/"]
  34. },
  35. "config": {
  36. "classmap-authoritative": true
  37. }
  38. }