1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 13:40:20 +02:00

fix: larastan v1 incompatible with phpstan v1.9.0 (#3665)

We can't update to larastan v2 until we update to laravel v9 which has to wait for Flarum v2, so we need to stay on phpstan v1.8

Signed-off-by: Sami Mazouz <sychocouldy@gmail.com>
This commit is contained in:
Sami Mazouz
2022-11-03 11:55:52 +01:00
committed by GitHub
parent 5898a50463
commit cdc76567d4
2 changed files with 2 additions and 2 deletions

View File

@@ -140,7 +140,7 @@
"require-dev": {
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan": ">=1.8.11 < 1.9.0",
"nunomaduro/larastan": "^1.0"
},
"config": {

View File

@@ -4,7 +4,7 @@
"minimum-stability": "dev",
"license": "MIT",
"require": {
"phpstan/phpstan": "^1.2",
"phpstan/phpstan": ">=1.8.11 < 1.9.0",
"nunomaduro/larastan": "^1.0"
},
"autoload": {