Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit 0eeff2c

Browse files
committed
CI: Install modules compatible with Codeception 4.2
1 parent 81f425e commit 0eeff2c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
wget https://robo.li/robo.phar
2929
php robo.phar prepare:dependencies
30-
composer update
30+
composer update --prefer-source
3131
php robo.phar prepare:tests
3232
php robo.phar prepare:test-autoloading
3333
composer dump-autoload

RoboFile.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ public function prepareDependencies()
1313

1414
$config['name'] = 'codeception/phpunit-wrapper-test';
1515
$config['require-dev']['codeception/codeception'] = getenv('CODECEPTION_VERSION');
16-
$config['require-dev']['codeception/module-asserts'] = 'dev-master';
17-
$config['require-dev']['codeception/module-cli'] = '*';
18-
$config['require-dev']['codeception/module-db'] = '*';
19-
$config['require-dev']['codeception/module-filesystem'] = '*';
20-
$config['require-dev']['codeception/module-phpbrowser'] = '*';
16+
$config['require-dev']['codeception/module-asserts'] = '^1.0';
17+
$config['require-dev']['codeception/module-cli'] = '^1.0';
18+
$config['require-dev']['codeception/module-db'] = '^1.0';
19+
$config['require-dev']['codeception/module-filesystem'] = '^1.0';
20+
$config['require-dev']['codeception/module-phpbrowser'] = '^1.0.3';
2121
$config['require-dev']['codeception/util-universalframework'] = '*';
2222
$config['replace'] = ['codeception/phpunit-wrapper' => '*'];
2323

0 commit comments

Comments
 (0)