diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index dffaf16..07eb00c 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -10,21 +10,19 @@ on: jobs: Tests: - runs-on: 'ubuntu-latest' + runs-on: "ubuntu-latest" strategy: matrix: php: - - '7.4' - - '8.0' - - '8.1' - - '8.2' - - '8.3' - - '8.4' - dependencies: ['highest'] + - "8.1" + - "8.2" + - "8.3" + - "8.4" + dependencies: ["highest"] include: - - description: '(lowest)' - php: '7.4' - dependencies: 'lowest' + - description: "(lowest)" + php: "8.1" + dependencies: "lowest" name: PHP ${{ matrix.php }} ${{ matrix.description }} steps: @@ -46,7 +44,7 @@ jobs: - name: "Upload test coverage" uses: codecov/codecov-action@v5 with: - files: './coverage.xml' + files: "./coverage.xml" fail_ci_if_error: true env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/composer.json b/composer.json index 845c0a6..8c75147 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php": "^7.4 || ^8.0", + "php": "^8.1", "phpstan/phpstan": "^2.0", "thecodingmachine/safe": "^1.0 || ^2.0 || ^3.0", "nikic/php-parser": "^5"