Skip to content

Commit

Permalink
feat: drop php 8.1 support (#91)
Browse files Browse the repository at this point in the history
test on php 8.3
  • Loading branch information
simPod committed Feb 2, 2024
1 parent 1926273 commit 36c0f97
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Expand Up @@ -15,12 +15,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.yaml
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: "none"
tools: "cs2pr, pecl"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/infection.yaml
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.1"
php-version: "8.2"
coverage: "pcov"

- name: "Install dependencies with Composer"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yaml
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: "none"
tools: "cs2pr, pecl"

Expand All @@ -36,7 +36,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.1"
- "8.2"

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -20,7 +20,7 @@
}
},
"require": {
"php": "^8.1",
"php": "^8.2",
"league/construct-finder": "^1.2",
"phpunit/phpunit": "^10",
"thecodingmachine/safe": "^2"
Expand Down
2 changes: 1 addition & 1 deletion phpcs.xml.dist
Expand Up @@ -5,7 +5,7 @@
>
<arg name="cache" value=".phpcs-cache" />

<config name="php_version" value="81000"/>
<config name="php_version" value="82000"/>

<rule ref="Cdn77" />

Expand Down

0 comments on commit 36c0f97

Please sign in to comment.