Skip to content

Commit 2d2e6a8

Browse files
committed
Update supported versions
1 parent 7ceb7d0 commit 2d2e6a8

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
php-versions: ['8.2', '8.3', '8.4']
10+
php-versions: ['8.4', '8.5']
1111
fail-fast: false
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- uses: shivammathur/setup-php@v2
1515
with:
1616
php-version: ${{ matrix.php-versions }}
17-
extensions: gd, mbstring, pcov, zip
17+
extensions: gd, mbstring, zip
1818
ini-values: max_execution_time=600, memory_limit=-1
1919
tools: composer:v2
20-
coverage: pcov
20+
coverage: xdebug
2121
env:
2222
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2323

@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
composer update --prefer-lowest
5656
vendor/bin/unit-test
57-
vendor/bin/functional-test 5.4
57+
vendor/bin/functional-test 6.4
5858
5959
- name: Archive logs
6060
if: ${{ failure() }}
@@ -64,7 +64,7 @@ jobs:
6464
path: vendor/endroid/quality/application/var/log
6565

6666
- name: Archive code coverage results
67-
uses: actions/upload-artifact@v4
67+
uses: actions/upload-artifact@v5
6868
with:
6969
name: coverage-php-${{ matrix.php-versions }}
7070
path: tests/coverage

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2024 (c) Jeroen van den Enden
1+
Copyright 2025 (c) Jeroen van den Enden
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^8.2",
15+
"php": "^8.4",
1616
"ext-fileinfo": "*",
1717
"endroid/installer": "^1.3.1",
1818
"twig/twig": "^3.0"

0 commit comments

Comments
 (0)