Skip to content

Commit 8c6d57a

Browse files
committed
Add support for PHP 8.3
Signed-off-by: George Steel <[email protected]>
1 parent 9721c3a commit 8c6d57a

File tree

4 files changed

+20
-17
lines changed

4 files changed

+20
-17
lines changed

.laminas-ci.json

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2+
"ignore_php_platform_requirements": {
3+
"8.3": true
4+
},
25
"extensions": [
36
"apcu"
47
],

.laminas-ci/install-apcu-extension-via-pecl.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
PHP_VERSION="$1"
44

5-
if ! [[ "${PHP_VERSION}" =~ 8\.2 ]]; then
6-
echo "APCu is only installed from pecl for PHP 8.2, ${PHP_VERSION} detected."
5+
if ! [[ "${PHP_VERSION}" =~ 8\.3 ]]; then
6+
echo "APCu is only installed from pecl for PHP 8.3, ${PHP_VERSION} detected."
77
exit 0;
88
fi
99

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,20 @@
3333
}
3434
},
3535
"require": {
36-
"php": "~8.1.0 || ~8.2.0",
36+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
3737
"dflydev/fig-cookies": "^3.0.0",
3838
"mezzio/mezzio-session": "^1.4",
3939
"psr/cache": "^1.0 || ^2.0 || ^3.0",
4040
"psr/container": "^1.0 || ^2.0 || ^3.0"
4141
},
4242
"require-dev": {
43-
"laminas/laminas-cache": "^3.9",
43+
"laminas/laminas-cache": "^3.9.1",
4444
"laminas/laminas-cache-storage-adapter-apcu": "^2.4",
4545
"laminas/laminas-coding-standard": "~2.5.0",
46-
"laminas/laminas-diactoros": "^3.0",
47-
"phpunit/phpunit": "^10.1.1",
46+
"laminas/laminas-diactoros": "^3.3",
47+
"phpunit/phpunit": "^10.4.2",
4848
"psalm/plugin-phpunit": "^0.18.4",
49-
"vimeo/psalm": "^5.9"
49+
"vimeo/psalm": "^5.15"
5050
},
5151
"suggest": {
5252
"psr/cache-implementation": "This package requires a PSR-6 CacheItemPoolInterface implementation."

composer.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)