Skip to content

Commit

Permalink
Provisional PHP 8.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Aug 28, 2021
1 parent ce987c0 commit 841b3ef
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

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

steps:
- name: Checkout Code
Expand All @@ -27,6 +27,10 @@ jobs:
- name: Setup Problem Matchers
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"

- name: Mimic PHP 8.0
run: composer config platform.php 8.0.999
if: matrix.php > 8

- name: Install PHP Dependencies
uses: nick-invision/retry@v1
with:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ CHANGE LOG
==========


## V3.0.5 (28/08/2021)

* Provisional PHP 8.1 support


## V3.0.4 (07/10/2020)

* Skip over invalid tags
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017-2020 Graham Campbell <[email protected]>
Copyright (c) 2017-2021 Graham Campbell <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Analyzer was created by, and is maintained by [Graham Campbell](https://github.c

## Installation

This version requires [PHP](https://php.net) 7.2-8.0, and supports [PHPUnit](https://phpunit.de/) 8-9.
This version requires [PHP](https://php.net) 7.2-8.1, and supports [PHPUnit](https://phpunit.de/) 8-9.

To get the latest version, simply require the project using [Composer](https://getcomposer.org):

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "graham-campbell/analyzer",
"description": "Checks if referenced classes really exist.",
"keywords": ["testing", "classes", "analysis", "analyzer", "Graham Campbell", "GRahamCampbell"],
"keywords": ["testing", "classes", "analysis", "analyzer", "Graham Campbell", "GrahamCampbell"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]"
"email": "[email protected]"
}
],
"require": {
Expand Down

0 comments on commit 841b3ef

Please sign in to comment.