Skip to content

Commit b1a0d32

Browse files
authored
Merge pull request #90 from gsteel/php-8.4
Add support for PHP 8.4
2 parents f708d13 + 8c0efd4 commit b1a0d32

22 files changed

+1182
-1144
lines changed

.coveralls.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
/.phpcs-cache
22
/.phpunit.result.cache
33
/.psalm-cache
4-
/clover.xml
5-
/coveralls-upload.json
64
/docs/html/
75
/laminas-mkdoc-theme.tgz
86
/laminas-mkdoc-theme/

.laminas-ci.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
{
2-
}
2+
"ignore_php_platform_requirements": {
3+
"8.4": true
4+
},
5+
"backwardCompatibilityCheck": true
6+
}

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
}
3939
},
4040
"require": {
41-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
41+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
4242
"ext-dom": "*",
4343
"ext-json": "*",
4444
"psr/container": "^1.1.2 || ^2.0.2",
@@ -49,15 +49,15 @@
4949
"willdurand/negotiation": "^3.0"
5050
},
5151
"require-dev": {
52-
"doctrine/orm": "^2.14.1",
52+
"doctrine/orm": "^2.19.8",
5353
"laminas/laminas-coding-standard": "~2.5.0",
54-
"laminas/laminas-hydrator": "^4.12",
55-
"laminas/laminas-paginator": "^2.17",
56-
"mezzio/mezzio-helpers": "^5.12",
57-
"phpspec/prophecy-phpunit": "^2.0.1",
58-
"phpunit/phpunit": "^9.5.28",
59-
"psalm/plugin-phpunit": "^0.18.4",
60-
"vimeo/psalm": "^5.18"
54+
"laminas/laminas-hydrator": "^4.15",
55+
"laminas/laminas-paginator": "^2.18.1",
56+
"mezzio/mezzio-helpers": "^5.16",
57+
"phpspec/prophecy-phpunit": "^2.2.0",
58+
"phpunit/phpunit": "^9.6.21",
59+
"psalm/plugin-phpunit": "^0.19.0",
60+
"vimeo/psalm": "^5.26.1"
6161
},
6262
"provide": {
6363
"psr/link-implementation": "1.0"

0 commit comments

Comments
 (0)