Skip to content

Commit c82aa2a

Browse files
authored
[1.x] Require php 8.1 (#199)
* chore(deps): require php 8.1 * chore(ci): add psalm baseline * chore: fix deprecated code * chore(deps): add lcobucci/clock * chore(deps): upgrade lcobucci/jwt to 5.3
1 parent 3df707a commit c82aa2a

16 files changed

+1734
-549
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ ubuntu-latest, windows-latest, macos-latest ]
10-
php-version: [ 8.0, 8.3 ]
10+
php-version: [ 8.1, 8.3 ]
1111
steps:
1212

1313
# --------- Setup steps ---------

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
}
1010
],
1111
"require": {
12-
"php": ">=8.0",
12+
"php": ">=8.1",
1313
"ext-json": "*",
14-
"ext-sodium": "*",
1514
"ext-openssl": "*",
15+
"ext-sodium": "*",
1616
"guzzlehttp/guzzle": "^7.6.0",
17-
"lcobucci/jwt": "^4.3",
17+
"lcobucci/clock": "^3.0",
18+
"lcobucci/jwt": "^5.3",
1819
"nesbot/carbon": "^2.66|^3.1"
1920
},
2021
"require-dev": {
@@ -50,7 +51,7 @@
5051
"sort-packages": true,
5152
"allow-plugins": {},
5253
"platform": {
53-
"php": "8.0"
54+
"php": "8.1"
5455
}
5556
}
5657
}

0 commit comments

Comments
 (0)