diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 00c324b..a55beaf 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,8 +16,8 @@ jobs: allowed-to-fail: [false] include: - php-versions: '8.1' - composer-arguments: ['--prefer-lowest', ''] - allowed-to-fail: true + composer-arguments: '' + allowed-to-fail: false steps: - name: Checkout @@ -37,4 +37,4 @@ jobs: - name: Run tests continue-on-error: ${{ matrix.allowed-to-fail }} - run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover \ No newline at end of file + run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover diff --git a/composer.json b/composer.json index f929f8f..3111b3f 100644 --- a/composer.json +++ b/composer.json @@ -20,12 +20,12 @@ ], "require": { "php": ">=7.3", - "illuminate/support": "^6.0|^7.0|^8.0", - "illuminate/view": "^6.0|^7.0|^8.0", - "illuminate/http": "^6.0|^7.0|^8.0" + "illuminate/support": "^6.0|^7.0|^8.0|^9.0", + "illuminate/view": "^6.0|^7.0|^8.0|^9.0", + "illuminate/http": "^6.0|^7.0|^8.0|^9.0" }, "require-dev": { - "orchestra/testbench": "^5.0 || ^6.0", + "orchestra/testbench": "^5.0|^6.0|^7.0", "phpunit/phpunit": "^9.3", "phpmd/phpmd": "^2.6", "squizlabs/php_codesniffer": "^3.3", @@ -49,7 +49,10 @@ "fix": "vendor/bin/phpcbf" }, "config": { - "sort-packages": true + "sort-packages": true, + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } }, "extra": { "laravel": {