Skip to content

Commit 877c887

Browse files
authored
Merge pull request #56 from jakzal/php-8.6
Start building against PHP 8.6
2 parents 152622a + 609b90a commit 877c887

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Build and test
1717
strategy:
1818
matrix:
19-
php: [8.1, 8.2, 8.3, 8.4, 8.5]
19+
php: [8.1, 8.2, 8.3, 8.4, 8.5, 8.6]
2020
deps: [high]
2121
include:
2222
- php: 8.1
@@ -33,11 +33,11 @@ jobs:
3333
php-version: "${{ matrix.php }}"
3434
ini-values: "phar.readonly=0"
3535

36-
- name: Test & package
36+
- name: Test
3737
if: matrix.deps == 'high'
3838
run: make install test
3939

40-
- name: Coding standards
40+
- name: Package
4141
run: make package
4242

4343
- name: Test & package (min)
@@ -57,7 +57,7 @@ jobs:
5757
needs: tests
5858
strategy:
5959
matrix:
60-
php: [8.1, 8.2, 8.3, 8.4, 8.5]
60+
php: [8.1, 8.2, 8.3, 8.4, 8.5, 8.6]
6161
steps:
6262
- uses: actions/checkout@v4
6363

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.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
13+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0 || ~8.6.0",
1414
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0"
1515
},
1616
"autoload": {

0 commit comments

Comments
 (0)