diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f91e4b4c..0f7f005b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,10 +18,9 @@ jobs: fail-fast: false matrix: include: - - php: '8.0' - continue-on-error: true - php: '8.1' - php: '8.2' + - php: '8.3' ignore-php-version: true calculate-code-coverage: true @@ -31,7 +30,7 @@ jobs: - name: Set up PHP with PECL extension uses: shivammathur/setup-php@v2 with: - php-version: ${{ matrix.php || '8.2' }} + php-version: ${{ matrix.php || '8.3' }} coverage: xdebug extensions: ctype, json, mbstring tools: composer diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 0e6a5c9d..84575ac2 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -1,6 +1,6 @@ build: environment: - php: 8.1 + php: 8.2 coding_style: php: diff --git a/ci/rector/config.php b/ci/rector/config.php index 47c09dca..e4d4379e 100644 --- a/ci/rector/config.php +++ b/ci/rector/config.php @@ -32,10 +32,11 @@ $rectorConfig->import(SetList::EARLY_RETURN); $rectorConfig->import(SetList::NAMING); $rectorConfig->import(SetList::PHP_80); + $rectorConfig->import(SetList::PHP_81); $rectorConfig->import(SetList::TYPE_DECLARATION); $rectorConfig->import(DoctrineSetList::DOCTRINE_25); $rectorConfig->import(DoctrineSetList::DOCTRINE_CODE_QUALITY); - $rectorConfig->import(LevelSetList::UP_TO_PHP_80); + $rectorConfig->import(LevelSetList::UP_TO_PHP_81); }; diff --git a/composer.json b/composer.json index 910085b8..7ca17845 100644 --- a/composer.json +++ b/composer.json @@ -36,7 +36,7 @@ }, "require": { - "php": "^8.0", + "php": "^8.1", "ext-ctype": "*", "ext-json": "*", "ext-mbstring": "*", @@ -56,7 +56,7 @@ "symfony/cache": "^5.0||^6.0" }, "suggest": { - "php": "^8.2", + "php": "^8.3", "doctrine/orm": "~2.5||~3.0" },