Skip to content

Commit

Permalink
bump up minimum supported codeception version to > 4.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
sidz committed Jan 27, 2021
1 parent 39b9c1b commit b1c8075
Show file tree
Hide file tree
Showing 14 changed files with 2,187 additions and 1,442 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-version: ['7.3']
php-version: ['7.4', '8.0 ']
coverage-driver: [pcov]

name: CI with PHP ${{ matrix.php-version }}, using ${{ matrix.coverage-driver }}
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Expand Up @@ -39,19 +39,19 @@
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.17",
"infection/infection": "^0.20.2",
"friendsofphp/php-cs-fixer": "^2.18",
"infection/infection": "^0.21.0",
"php-coveralls/php-coveralls": "^2.4",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.66",
"phpstan/phpstan": "^0.12.70",
"phpstan/phpstan-phpunit": "^0.12.17",
"phpstan/phpstan-strict-rules": "^0.12.9",
"phpstan/phpstan-webmozart-assert": "^0.12.8",
"phpunit/phpunit": "^8.5",
"phpstan/phpstan-webmozart-assert": "^0.12.9",
"phpunit/phpunit": "^9.5",
"thecodingmachine/safe": "^1.3",
"vimeo/psalm": "^4.4"
},
"conflict": {
"codeception/codeception": "<3.1.1"
"codeception/codeception": "<4.1.9"
}
}
967 changes: 648 additions & 319 deletions composer.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions tests/e2e/Codeception_Basic/composer.json
@@ -1,6 +1,6 @@
{
"require-dev": {
"codeception/codeception": "^3.1.0"
"codeception/codeception": "^4.1.9"
},
"autoload": {
"psr-4": {
Expand All @@ -13,7 +13,7 @@
}
},
"require": {
"infection/infection": "0.18.2",
"infection/infection": "0.21.0",
"infection/codeception-adapter": "dev-master"
},
"repositories": [
Expand Down
Expand Up @@ -20,7 +20,7 @@ class AcceptanceTester extends \Codeception\Actor
{
use _generated\AcceptanceTesterActions;

/**
* Define custom actions here
*/
/**
* Define custom actions here
*/
}
Expand Up @@ -20,7 +20,7 @@ class FunctionalTester extends \Codeception\Actor
{
use _generated\FunctionalTesterActions;

/**
* Define custom actions here
*/
/**
* Define custom actions here
*/
}
6 changes: 3 additions & 3 deletions tests/e2e/Codeception_Basic/tests/_support/UnitTester.php
Expand Up @@ -20,7 +20,7 @@ class UnitTester extends \Codeception\Actor
{
use _generated\UnitTesterActions;

/**
* Define custom actions here
*/
/**
* Define custom actions here
*/
}

0 comments on commit b1c8075

Please sign in to comment.