Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
php-version: ['8.4']
php-version: ['8.4', '8.5']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
php-version: ['8.4']
php-version: ['8.4', '8.5']

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.4']
php: ['8.4', '8.5']

steps:
- name: Checkout
Expand Down Expand Up @@ -50,6 +50,7 @@ jobs:
--colors=always

- name: Upload coverage to Codecov
if: matrix.php == '8.5'
uses: codecov/codecov-action@v5
with:
files: build/logs/clover.xml
Expand All @@ -58,7 +59,7 @@ jobs:
verbose: true

- name: Upload test results to Codecov
if: ${{ !cancelled() }}
if: ${{ !cancelled() && matrix.php == '8.5' }}
uses: codecov/test-results-action@v1
with:
files: build/logs/junit.xml
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ composer require valbeat/result

## Requirements

- PHP 8.4 or higher
- PHP 8.4 or higher (tested on PHP 8.4 and 8.5)
- Composer

## Basic Usage
Expand Down
6 changes: 4 additions & 2 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@ parameters:
checkBenevolentUnionTypes: true
checkUninitializedProperties: true

# PHP 8.4 features
phpVersion: 80400
# Supported PHP versions (8.4 - 8.5)
phpVersion:
min: 80400
max: 80500
Comment thread
valbeat marked this conversation as resolved.
Comment on lines +16 to +19
Loading