123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- {
- "name":"codeception/base",
- "description":"BDD-style testing framework",
- "keywords":["BDD", "acceptance testing", "functional testing", "unit testing", "tdd"],
- "homepage":"http://codeception.com/",
- "type":"library",
- "license":"MIT",
- "authors":[
- {
- "name":"Michael Bodnarchuk",
- "email":"davert@mail.ua",
- "homepage":"http://codegyre.com"
- }
- ],
- "minimum-stability": "RC",
- "require": {
- "php": ">=5.6.0 <8.0",
- "ext-curl": "*",
- "ext-json": "*",
- "ext-mbstring": "*",
- "guzzlehttp/psr7": "~1.0",
- "symfony/finder": ">=2.7 <5.0",
- "symfony/console": ">=2.7 <5.0",
- "symfony/event-dispatcher": ">=2.7 <5.0",
- "symfony/yaml": ">=2.7 <5.0",
- "symfony/browser-kit": ">=2.7 <5.0",
- "symfony/css-selector": ">=2.7 <5.0",
- "symfony/dom-crawler": ">=2.7 <5.0",
- "behat/gherkin": "^4.4.0",
- "codeception/phpunit-wrapper": "^6.0.9|^7.0.6",
- "codeception/stub": "^2.0"
- },
- "require-dev": {
- "monolog/monolog": "~1.8",
- "facebook/graph-sdk": "~5.3",
- "php-amqplib/php-amqplib": "~2.4",
- "codeception/specify": "~0.3",
- "pda/pheanstalk": "~3.0",
- "flow/jsonpath": "~0.2",
- "predis/predis": "^1.0",
- "squizlabs/php_codesniffer": "~2.0",
- "vlucas/phpdotenv": "^3.0",
- "symfony/process": ">=2.7 <5.0"
- },
- "suggest": {
- "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
- "codeception/specify": "BDD-style code blocks",
- "codeception/verify": "BDD-style assertions",
- "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
- "flow/jsonpath": "For using JSONPath in REST module",
- "phpseclib/phpseclib": "for SFTP option in FTP Module",
- "league/factory-muffin": "For DataFactory module",
- "league/factory-muffin-faker": "For Faker support in DataFactory module",
- "symfony/phpunit-bridge": "For phpunit-bridge support",
- "stecman/symfony-console-completion": "For BASH autocompletion"
- },
- "autoload":{
- "psr-4":{
- "Codeception\\": "src/Codeception",
- "Codeception\\Extension\\": "ext"
- }
- },
- "extra": {
- "branch-alias": {
- }
- },
- "bin":["codecept"],
- "config": {
- "platform": {}
- }
- }
|