Skip to content

Commit 3a72735

Browse files
authored
Allow php 8.4 (#134)
* Allow php 8.4
1 parent f7ef25e commit 3a72735

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

.laminas-ci.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"additional_checks": [
3+
{
4+
"name": "PhpStan",
5+
"job": {
6+
"php": "8.2",
7+
"dependencies": "latest",
8+
"command": "vendor/bin/phpstan analyse"
9+
}
10+
}
11+
]
12+
}
13+

composer.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@
1111
}
1212
],
1313
"require": {
14-
"php": "~8.2.0 || ~8.3.0",
14+
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
1515
"psr/log": "^1.1 || ^2.0 || ^3.0",
16-
"job-runner/job-runner": "^1.3"
16+
"job-runner/job-runner": "^1.4"
1717
},
1818
"require-dev": {
1919
"doctrine/coding-standard": "^12.0",
2020
"phpunit/phpunit": "^11.4.3",
21-
"vimeo/psalm": "dev-master",
22-
"psalm/plugin-phpunit": "^0.19.0"
21+
"phpstan/phpstan": "^2.0.1"
2322
},
2423
"autoload": {
2524
"psr-4": {
@@ -36,6 +35,9 @@
3635
"allow-plugins": {
3736
"infection/extension-installer": true,
3837
"dealerdirect/phpcodesniffer-composer-installer": true
38+
},
39+
"platform": {
40+
"php": "8.2.99"
3941
}
4042
}
4143
}
File renamed without changes.

phpstan.neon

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
parameters:
2+
level: 10
3+
paths:
4+
- src/
5+
- tests/

0 commit comments

Comments
 (0)