From bf14a401d868b238978d951da479336c7cf04710 Mon Sep 17 00:00:00 2001 From: Propaganistas Date: Mon, 25 Nov 2024 14:04:04 +0100 Subject: [PATCH] Support PHP 8.4 (#260) --- .github/workflows/tests.yml | 5 +---- composer.json | 1 - phpstan.neon | 15 --------------- 3 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 phpstan.neon diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 476c92c..c73ff4f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ 8.1, 8.2, 8.3 ] + php: [ 8.1, 8.2, 8.3, 8.4 ] laravel: [ 10, 11 ] stability: [ prefer-lowest, prefer-stable ] exclude: @@ -47,6 +47,3 @@ jobs: - name: Execute tests run: vendor/bin/phpunit - - - name: Run phpstan - run: vendor/bin/phpstan analyse --error-format=github diff --git a/composer.json b/composer.json index 1463d99..a8c5fa3 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,6 @@ "require-dev": { "orchestra/testbench": "*", "phpunit/phpunit": "^10.5", - "larastan/larastan": "^2.9", "laravel/pint": "^1.14" }, "autoload": { diff --git a/phpstan.neon b/phpstan.neon deleted file mode 100644 index 3038835..0000000 --- a/phpstan.neon +++ /dev/null @@ -1,15 +0,0 @@ -includes: - - ./vendor/larastan/larastan/extension.neon - -parameters: - - paths: - - src - - # 8 is the highest level - level: 5 - - ignoreErrors: - - '#Unsafe usage of new static#' - - checkMissingIterableValueType: false