diff --git a/.github/workflows/quality-assurance.yaml b/.github/workflows/quality-assurance.yaml index a9c5aaf..1d90131 100644 --- a/.github/workflows/quality-assurance.yaml +++ b/.github/workflows/quality-assurance.yaml @@ -17,7 +17,7 @@ jobs: strategy: matrix: operating-system: [ 'ubuntu-latest' ] - php-versions: [ '7.4', '8.0' ] + php-versions: [ '7.4', '8.0', '8.1', '8.2' ] steps: - name: "Install PHP" uses: shivammathur/setup-php@v2 diff --git a/composer.json b/composer.json index 2a310b9..8d44263 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php": ">=7.4 || 8.0" + "php": ">=7.4 || <=8.2" }, "require-dev": { "antiseptikk/dev-kit": "^1.0", @@ -27,5 +27,10 @@ }, "scripts": { "lint": "vendor/bin/ecs check ./src" + }, + "config": { + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } } }