Skip to content

Commit 37826b7

Browse files
authored
Merge pull request #46 from grossmannmartin/php83-26
Added support for PHP 8.3 to the 2.6 version
2 parents e270a94 + fcf559a commit 37826b7

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
name: Build and test
1616
strategy:
1717
matrix:
18-
php: [8.0, 8.1, 8.2]
18+
php: [8.1, 8.2, 8.3]
1919
deps: [high]
2020
include:
21-
- php: 8.0
21+
- php: 8.1
2222
deps: low
2323

2424
steps:
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Upload the phar
4747
uses: actions/upload-artifact@v1
48-
if: matrix.php == '8.0' && matrix.deps == 'high'
48+
if: matrix.php == '8.1' && matrix.deps == 'high'
4949
with:
5050
name: zalas-phpunit-globals-extension.phar
5151
path: build/zalas-phpunit-globals-extension.phar
@@ -56,8 +56,7 @@ jobs:
5656
needs: tests
5757
strategy:
5858
matrix:
59-
php: [8.0, 8.1, 8.2]
60-
59+
php: [8.1, 8.2, 8.3]
6160
steps:
6261
- uses: actions/checkout@v3
6362

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ build/zalas-phpunit-globals-extension.phar: tools/box
5555

5656
cd build/phar && \
5757
composer remove phpunit/phpunit --no-update && \
58-
composer config platform.php 8.0 && \
58+
composer config platform.php 8.1 && \
5959
composer update --no-dev -o -a
6060

6161
tools/box compile
@@ -79,7 +79,7 @@ tools/php-cs-fixer:
7979
curl -Ls http://cs.symfony.com/download/php-cs-fixer-v3.phar -o tools/php-cs-fixer && chmod +x tools/php-cs-fixer
8080

8181
tools/box:
82-
curl -Ls https://github.com/humbug/box/releases/download/3.13.0/box.phar -o tools/box && chmod +x tools/box
82+
curl -Ls https://github.com/humbug/box/releases/download/4.2.0/box.phar -o tools/box && chmod +x tools/box
8383

8484
test-package-tools: tests/phar/tools/phpunit tests/phar/tools/phpunit.d/zalas-phpunit-globals-extension.phar
8585
.PHONY: test-package-tools

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
13+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
1414
"phpunit/phpunit": "^9.0"
1515
},
1616
"conflict": {

0 commit comments

Comments
 (0)