diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfc628c..57176c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,8 @@ jobs: fail-fast: false matrix: php-version: [ - '8.2', - '8.3' + '8.3', + '8.4' ] steps: @@ -62,7 +62,7 @@ jobs: fail-fast: false matrix: php-version: [ - '8.2' + '8.3' ] steps: diff --git a/README.md b/README.md index 3eb78f2..84537c6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # GitHook [![CI](https://github.com/spryker/git-hook/actions/workflows/ci.yml/badge.svg)](https://github.com/spryker/git-hook/actions/workflows/ci.yml) -[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.2-8892BF.svg)](https://php.net/) +[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.3-8892BF.svg)](https://php.net/) [![PHPStan](https://img.shields.io/badge/PHPStan-level%208-brightgreen.svg?style=flat)](https://phpstan.org/) [![License](https://img.shields.io/github/license/spryker/git-hook.svg)](https://packagist.org/packages/spryker/git-hook) diff --git a/composer.json b/composer.json index 43b724f..184305e 100644 --- a/composer.json +++ b/composer.json @@ -20,14 +20,14 @@ "source": "https://github.com/spryker/git-hook" }, "require": { - "php": ">=8.2", + "php": ">=8.3", "spryker/laminas": "^1.0.0", "symfony/process": "^4.0.0 || ^5.0.0 || ^6.0.0", "symfony/yaml": "^4.0.0 || ^5.0.0 || ^6.0.0", "symfony/console": "^4.0.0 || ^5.0.0 || ^6.0.0" }, "require-dev": { - "phpstan/phpstan": "^1.2.0", + "phpstan/phpstan": "^1.11.0", "spryker/code-sniffer": "*", "sllh/composer-versions-check": "*" },