Skip to content

Commit

Permalink
CI: Install modules compatible with Codeception 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Naktibalda committed May 21, 2022
1 parent 81f425e commit 0eeff2c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
wget https://robo.li/robo.phar
php robo.phar prepare:dependencies
composer update
composer update --prefer-source
php robo.phar prepare:tests
php robo.phar prepare:test-autoloading
composer dump-autoload
Expand Down
10 changes: 5 additions & 5 deletions RoboFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ public function prepareDependencies()

$config['name'] = 'codeception/phpunit-wrapper-test';
$config['require-dev']['codeception/codeception'] = getenv('CODECEPTION_VERSION');
$config['require-dev']['codeception/module-asserts'] = 'dev-master';
$config['require-dev']['codeception/module-cli'] = '*';
$config['require-dev']['codeception/module-db'] = '*';
$config['require-dev']['codeception/module-filesystem'] = '*';
$config['require-dev']['codeception/module-phpbrowser'] = '*';
$config['require-dev']['codeception/module-asserts'] = '^1.0';
$config['require-dev']['codeception/module-cli'] = '^1.0';
$config['require-dev']['codeception/module-db'] = '^1.0';
$config['require-dev']['codeception/module-filesystem'] = '^1.0';
$config['require-dev']['codeception/module-phpbrowser'] = '^1.0.3';
$config['require-dev']['codeception/util-universalframework'] = '*';
$config['replace'] = ['codeception/phpunit-wrapper' => '*'];

Expand Down

0 comments on commit 0eeff2c

Please sign in to comment.