composer.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.4.0 <8.0",
  18. "ext-json": "*",
  19. "ext-mbstring": "*",
  20. "guzzlehttp/psr7": "~1.0",
  21. "symfony/finder": ">=2.7 <5.0",
  22. "symfony/console": ">=2.7 <5.0",
  23. "symfony/event-dispatcher": ">=2.7 <5.0",
  24. "symfony/yaml": ">=2.7 <5.0",
  25. "symfony/browser-kit": ">=2.7 <5.0",
  26. "symfony/css-selector": ">=2.7 <5.0",
  27. "symfony/dom-crawler": ">=2.7 <5.0",
  28. "behat/gherkin": "^4.4.0",
  29. "codeception/phpunit-wrapper": "^6.0.9|^7.0.6",
  30. "codeception/stub": "^1.0"
  31. },
  32. "require-dev": {
  33. "monolog/monolog": "~1.8",
  34. "facebook/graph-sdk": "~5.3",
  35. "php-amqplib/php-amqplib": "~2.4",
  36. "codeception/specify": "~0.3",
  37. "pda/pheanstalk": "~3.0",
  38. "flow/jsonpath": "~0.2",
  39. "predis/predis": "^1.0",
  40. "squizlabs/php_codesniffer": "~2.0",
  41. "vlucas/phpdotenv": "^2.4.0",
  42. "symfony/process": ">=2.7 <5.0"
  43. },
  44. "suggest": {
  45. "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
  46. "codeception/specify": "BDD-style code blocks",
  47. "codeception/verify": "BDD-style assertions",
  48. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
  49. "flow/jsonpath": "For using JSONPath in REST module",
  50. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  51. "league/factory-muffin": "For DataFactory module",
  52. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  53. "symfony/phpunit-bridge": "For phpunit-bridge support",
  54. "stecman/symfony-console-completion": "For BASH autocompletion"
  55. },
  56. "autoload":{
  57. "psr-4":{
  58. "Codeception\\": "src\\Codeception",
  59. "Codeception\\Extension\\": "ext"
  60. }
  61. },
  62. "extra": {
  63. "branch-alias": {
  64. }
  65. },
  66. "bin":["codecept"],
  67. "config": {
  68. "platform": {}
  69. }
  70. }