Skip to content

Commit 1cd9db6

Browse files
authored
Merge pull request #17 from scotteuser/php-multiple-version-support
Php multiple version support
2 parents d475cd5 + 83b81f8 commit 1cd9db6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,18 @@ jobs:
66
ci:
77
runs-on: ubuntu-latest
88

9+
strategy:
10+
matrix:
11+
php-version: [8.1, 8.2, 8.3]
12+
913
steps:
1014
- name: Checkout
1115
uses: actions/checkout@v3
1216

1317
- name: Setup PHP
1418
uses: shivammathur/setup-php@v2
1519
with:
16-
php-version: 8.2
20+
php-version: ${{ matrix.php-version }}
1721
tools: composer:v2
1822
coverage: xdebug
1923

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^8.2",
21+
"php": "^8.1",
2222
"saloonphp/saloon": "^3.6"
2323
},
2424
"autoload": {

0 commit comments

Comments
 (0)