Skip to content

Commit

Permalink
Officially support PHP 8.1 (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell authored Mar 30, 2022
1 parent 8e24614 commit 4c86423
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .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.3', '7.4', '8.0']
php: ['7.3', '7.4', '8.0', '8.1']
symfony: ['4', '5', '6']
exclude:
- php: '7.3'
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
with:
timeout_minutes: 5
max_attempts: 5
command: composer require "symfony/filesystem:^6.0@dev" "symfony/process:^6.0@dev" "symfony/var-dumper:^6.0@dev" --dev --no-update --no-interaction
command: composer require "symfony/filesystem:^6.0" "symfony/process:^6.0" "symfony/var-dumper:^6.0" --dev --no-update --no-interaction
if: "matrix.symfony == '6'"

- name: Install Dependencies
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# CHANGELOG


## 1.6.0 (UPCOMING)

* Officially support PHP 8.1


## 1.5.0 (2022-03-25)

* Added `Browser::getPages` method
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Happy browsing!

## Requirements

Requires PHP 7.3-8.0 and a chrome/chromium 65+ executable.
Requires PHP 7.3-8.1 and a chrome/chromium 65+ executable.

Note that the library is only tested on Linux but is compatible with macOS and Windows.

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
],
"require": {
"php": "^7.3 || ^8.0",
"chrome-php/wrench": "^1.1",
"chrome-php/wrench": "^1.2",
"evenement/evenement": "^3.0.1",
"monolog/monolog": "^1.26 || ^2.2",
"psr/log": "^1.1 || ^2.0 || ^3.0",
Expand Down

0 comments on commit 4c86423

Please sign in to comment.