diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65f63341..808d62c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - PHP: [ '7.4', '8.0', '8.1' ] + PHP: [ '7.4', '8.0', '8.1', '8.2' ] TYPO3: [ '^11.5', '11.5.x-dev' ] env: TYPO3_DATABASE_NAME: 'typo3_ci' diff --git a/Build/Test/cibuild.sh b/Build/Test/cibuild.sh index 727d96f5..94090a46 100755 --- a/Build/Test/cibuild.sh +++ b/Build/Test/cibuild.sh @@ -28,6 +28,7 @@ else fi echo -e "\n\n" +export PHP_CS_FIXER_IGNORE_ENV=1 echo "Check compliance against TYPO3 Coding Standards" if ! .Build/bin/php-cs-fixer --version > /dev/null 2>&1 then diff --git a/composer.json b/composer.json index 633d6cb3..b5dfb7f0 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "typo3-ter/tika": "self.version" }, "require": { - "php": "^7.4 || ^8.0", + "php": ">=7.4 <=8.2.99", "ext-json": "*", "ext-pdo": "*", "typo3/cms-backend": "^11.5",