Skip to content

Commit

Permalink
feat: drop php 8.1 support (#68)
Browse files Browse the repository at this point in the history
- test on php 8.2, 8.3
  • Loading branch information
simPod authored Mar 23, 2024
1 parent 898bf1e commit 3eaa665
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ jobs:
strategy:
matrix:
php-version:
- "8.1"
- "8.2"
- "8.3"
dependencies:
- "highest"
include:
- dependencies: "lowest"
php-version: "8.1"
php-version: "8.2"

steps:
- name: "Checkout"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.1"
php-version: "8.2"
coverage: "none"
extensions: "json, mbstring"
tools: "cs2pr"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/infection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.1"
php-version: "8.2"
coverage: "pcov"
extensions: "json, mbstring"
tools: "cs2pr"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.1"
php-version: "8.2"
coverage: "none"
extensions: "json, mbstring"
tools: "cs2pr"
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"sort-packages": true
},
"require": {
"php": "^8.1",
"php": "^8.2",
"thecodingmachine/safe": "^2"
},
"require-dev": {
Expand Down

0 comments on commit 3eaa665

Please sign in to comment.