Skip to content

Commit

Permalink
Allow php 8.4 (#147)
Browse files Browse the repository at this point in the history
* Allow php 8.4
  • Loading branch information
fezfez authored Nov 12, 2024
1 parent c3bc0f9 commit bd70785
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"additional_checks": [
{
"name": "PhpStan",
"job": {
"php": "8.2",
"dependencies": "latest",
"command": "vendor/bin/phpstan analyse"
}
}
]
}

10 changes: 6 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,14 @@
}
],
"require": {
"php": "~8.2.0 || ~8.3.0",
"job-runner/job-runner": "^1.3",
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"job-runner/job-runner": "^1.4",
"symfony/notifier": "^6.0 || ^7.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"phpunit/phpunit": "^11.4.3",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "dev-master"
"phpstan/phpstan": "^2.0.1"
},
"autoload": {
"psr-4": {
Expand All @@ -36,6 +35,9 @@
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
},
"platform": {
"php": "8.2.99"
}
}
}
File renamed without changes.
5 changes: 5 additions & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
parameters:
level: 10
paths:
- src/
- tests/

0 comments on commit bd70785

Please sign in to comment.