Skip to content

Commit 5acb50c

Browse files
Merge pull request #57 from getkirby/fix/56-php-support
Support PHP 8.3
2 parents 32fb9e6 + 101b9df commit 5acb50c

File tree

4 files changed

+401
-123
lines changed

4 files changed

+401
-123
lines changed

.github/workflows/ci.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
timeout-minutes: 5
1010
strategy:
1111
matrix:
12-
php: ["8.0", "8.1"]
12+
php: ["8.1", "8.2", "8.3"]
1313
env:
1414
extensions: mbstring, pcov
1515
ini: pcov.directory=., "pcov.exclude=\"~(vendor|tests)~\""
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # pin@v3
19+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
2020

2121
- name: Setup PHP cache environment
2222
id: ext-cache
@@ -27,20 +27,20 @@ jobs:
2727
key: php-v1
2828

2929
- name: Cache PHP extensions
30-
uses: actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # pin@v3
30+
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
3131
with:
3232
path: ${{ steps.ext-cache.outputs.dir }}
3333
key: ${{ steps.ext-cache.outputs.key }}
3434
restore-keys: ${{ steps.ext-cache.outputs.key }}
3535

3636
- name: Setup PHP environment
37-
uses: shivammathur/setup-php@3eda58347216592f618bb1dff277810b6698e4ca # pin@v2
37+
uses: shivammathur/setup-php@6d7209f44a25a59e904b1ee9f3b0c33ab2cd888d # pin@v2
3838
with:
3939
php-version: ${{ matrix.php }}
4040
extensions: ${{ env.extensions }}
4141
ini-values: ${{ env.ini }}
4242
coverage: pcov
43-
tools: phpunit:9.5.13, psalm:4.11.2
43+
tools: phpunit:10.5.5, psalm:5.20.0
4444

4545
- name: Setup problem matchers
4646
run: |
@@ -52,7 +52,7 @@ jobs:
5252
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
5353

5454
- name: Cache dependencies
55-
uses: actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # pin@v3
55+
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
5656
with:
5757
path: ${{ steps.composerCache.outputs.dir }}
5858
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -63,7 +63,7 @@ jobs:
6363

6464
- name: Cache analysis data
6565
id: finishPrepare
66-
uses: actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # pin@v3
66+
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
6767
with:
6868
path: ~/.cache/psalm
6969
key: backend-analysis-${{ matrix.php }}-v2
@@ -91,12 +91,12 @@ jobs:
9191
runs-on: ubuntu-latest
9292
timeout-minutes: 5
9393
env:
94-
php: "8.0"
94+
php: "8.2"
9595
extensions: mbstring
9696

9797
steps:
9898
- name: Checkout
99-
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # pin@v3
99+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
100100

101101
- name: Setup PHP cache environment
102102
id: ext-cache
@@ -107,15 +107,15 @@ jobs:
107107
key: php-v1
108108

109109
- name: Cache PHP extensions
110-
uses: actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # pin@v3
110+
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
111111
with:
112112
path: ${{ steps.ext-cache.outputs.dir }}
113113
key: ${{ steps.ext-cache.outputs.key }}
114114
restore-keys: ${{ steps.ext-cache.outputs.key }}
115115

116116
- name: Setup PHP environment
117117
id: finishPrepare
118-
uses: shivammathur/setup-php@3eda58347216592f618bb1dff277810b6698e4ca # pin@v2
118+
uses: shivammathur/setup-php@6d7209f44a25a59e904b1ee9f3b0c33ab2cd888d # pin@v2
119119
with:
120120
php-version: ${{ env.php }}
121121
extensions: ${{ env.extensions }}
@@ -140,7 +140,7 @@ jobs:
140140
- name: Cache dependencies
141141
id: composerCache2
142142
if: always() && steps.composerCache1.outcome == 'success'
143-
uses: actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # pin@v3
143+
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
144144
with:
145145
path: ${{ steps.composerCache1.outputs.dir }}
146146
key: ${{ runner.os }}-composer-locked-${{ hashFiles('**/composer.lock') }}
@@ -171,17 +171,17 @@ jobs:
171171

172172
steps:
173173
- name: Checkout
174-
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # pin@v3
174+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
175175

176176
- name: Setup PHP environment
177-
uses: shivammathur/setup-php@3eda58347216592f618bb1dff277810b6698e4ca # pin@v2
177+
uses: shivammathur/setup-php@6d7209f44a25a59e904b1ee9f3b0c33ab2cd888d # pin@v2
178178
with:
179179
coverage: none
180180
tools: php-cs-fixer:3.8.0
181181

182182
- name: Cache analysis data
183183
id: finishPrepare
184-
uses: actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # pin@v3
184+
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # pin@v3
185185
with:
186186
path: ~/.php-cs-fixer
187187
key: coding-style

composer.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Kirby Query Language",
44
"license": "MIT",
55
"type": "kirby-plugin",
6-
"version": "2.1.0",
6+
"version": "2.2.0",
77
"keywords": [
88
"kirby",
99
"cms",
@@ -30,8 +30,7 @@
3030
"source": "https://github.com/getkirby/kql"
3131
},
3232
"require": {
33-
"php": ">=8.0.0 <8.3.0",
34-
"getkirby/cms": ">=3.8.2",
33+
"getkirby/cms": "^3.10.0 || ^4.0 || ^5.0",
3534
"getkirby/composer-installer": "^1.2.1"
3635
},
3736
"autoload": {

0 commit comments

Comments
 (0)