diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5679c2c..8d6eca0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.1, 8.2] + php: [8.2, 8.3] dependencies: [lowest, highest] experimental: [false] name: 👷 CI PHP-${{ matrix.php }} ${{ matrix.dependencies }} on ${{ matrix.os }} diff --git a/composer.json b/composer.json index f527b5e..0871203 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "chat": "https://github.com/orgs/sikessem/discussions" }, "require": { - "php": "^8.1|^8.2" + "php": ">=8.2" }, "require-dev": { "sikessem/devtools": "^0.8.0" diff --git a/composer.lock b/composer.lock index 19909a4..758b260 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "01320a668d978bcf022fc6b9ae30544e", + "content-hash": "40cf6553701b2f6d25afcd8a51c77e08", "packages": [], "packages-dev": [ { @@ -9361,7 +9361,7 @@ "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": "^8.1|^8.2" + "php": ">=8.2" }, "platform-dev": [], "plugin-api-version": "2.6.0" diff --git a/rector.php b/rector.php index 091c0bf..da0735d 100644 --- a/rector.php +++ b/rector.php @@ -17,7 +17,7 @@ // define sets of rules $rectorConfig->sets([ - LevelSetList::UP_TO_PHP_81, LevelSetList::UP_TO_PHP_82, + LevelSetList::UP_TO_PHP_83, ]); };