Skip to content

Commit

Permalink
8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Feb 14, 2022
1 parent bffd767 commit a9ac65a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog for Craft CMS Server Check

## 2.1.2 - 2022-02-14

### Changed
- Bumped the PHP requirement to 8.0.2+.

## 2.1.1 - 2022-02-10

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions server/requirements/requirements.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
/** @var RequirementsChecker $this */
$requirements = array(
array(
'name' => 'PHP 8.0+',
'name' => 'PHP 8.0.2+',
'mandatory' => true,
'condition' => PHP_VERSION_ID >= 80000,
'memo' => 'PHP 8.0 or later is required.',
'condition' => PHP_VERSION_ID >= 80002,
'memo' => 'PHP 8.0.2 or later is required.',
),
);

Expand Down

0 comments on commit a9ac65a

Please sign in to comment.