Skip to content

Commit

Permalink
Update codebase to PHP 7.4 (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
TavoNiievez committed Nov 30, 2021
1 parent 7e1e8fd commit ef4a270
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
php: [7.1, 7.2, 7.3, 7.4, 8.0]
php: [7.4, 8.0, 8.1]

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -19,7 +19,7 @@
],
"minimum-stability": "RC",
"require": {
"php": "^7.1 || ^8.0",
"php": "^7.4 || ^8.0",
"codeception/lib-asserts": "^1.13.1",
"codeception/codeception": "*@dev"
},
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -9,7 +9,7 @@ A Codeception module containing various assertions.

## Requirements

* `PHP 7.1` or higher.
* `PHP 7.4` or higher.

## Installation

Expand Down
3 changes: 1 addition & 2 deletions tests/unit/Codeception/Module/AssertsTest.php
Expand Up @@ -15,8 +15,7 @@

final class AssertsTest extends TestCase
{
/** @var Asserts */
protected $module;
protected ?Asserts $module = null;

public function _setUp()
{
Expand Down

0 comments on commit ef4a270

Please sign in to comment.