composer.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name":"codeception/base",
  3. "description":"BDD-style testing framework",
  4. "keywords":["BDD", "acceptance testing", "functional testing", "unit testing", "tdd"],
  5. "homepage":"http://codeception.com/",
  6. "type":"library",
  7. "license":"MIT",
  8. "authors":[
  9. {
  10. "name":"Michael Bodnarchuk",
  11. "email":"davert@mail.ua",
  12. "homepage":"http://codegyre.com"
  13. }
  14. ],
  15. "minimum-stability": "RC",
  16. "require": {
  17. "php": ">=5.6.0 <8.0",
  18. "ext-curl": "*",
  19. "ext-json": "*",
  20. "ext-mbstring": "*",
  21. "guzzlehttp/psr7": "~1.0",
  22. "symfony/finder": ">=2.7 <5.0",
  23. "symfony/console": ">=2.7 <5.0",
  24. "symfony/event-dispatcher": ">=2.7 <5.0",
  25. "symfony/yaml": ">=2.7 <5.0",
  26. "symfony/browser-kit": ">=2.7 <5.0",
  27. "symfony/css-selector": ">=2.7 <5.0",
  28. "symfony/dom-crawler": ">=2.7 <5.0",
  29. "behat/gherkin": "^4.4.0",
  30. "codeception/phpunit-wrapper": "^6.0.9|^7.0.6",
  31. "codeception/stub": "^2.0"
  32. },
  33. "require-dev": {
  34. "monolog/monolog": "~1.8",
  35. "facebook/graph-sdk": "~5.3",
  36. "php-amqplib/php-amqplib": "~2.4",
  37. "codeception/specify": "~0.3",
  38. "pda/pheanstalk": "~3.0",
  39. "flow/jsonpath": "~0.2",
  40. "predis/predis": "^1.0",
  41. "squizlabs/php_codesniffer": "~2.0",
  42. "vlucas/phpdotenv": "^3.0",
  43. "symfony/process": ">=2.7 <5.0"
  44. },
  45. "suggest": {
  46. "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
  47. "codeception/specify": "BDD-style code blocks",
  48. "codeception/verify": "BDD-style assertions",
  49. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
  50. "flow/jsonpath": "For using JSONPath in REST module",
  51. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  52. "league/factory-muffin": "For DataFactory module",
  53. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  54. "symfony/phpunit-bridge": "For phpunit-bridge support",
  55. "stecman/symfony-console-completion": "For BASH autocompletion"
  56. },
  57. "autoload":{
  58. "psr-4":{
  59. "Codeception\\": "src/Codeception",
  60. "Codeception\\Extension\\": "ext"
  61. }
  62. },
  63. "extra": {
  64. "branch-alias": {
  65. }
  66. },
  67. "bin":["codecept"],
  68. "config": {
  69. "platform": {}
  70. }
  71. }