diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8c06b22..d5d9251 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,16 +9,16 @@ jobs: strategy: matrix: include: + - php: 8.3 + laravel: ^11.0 + - php: 8.2 + laravel: ^11.0 - php: 8.2 laravel: ^10.0 - php: 8.1 laravel: ^10.0 - php: 8.1 laravel: ^9.0 - - php: 8.1 - laravel: ^8.0 - - php: 8.0 - laravel: ^8.0 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} diff --git a/composer.json b/composer.json index 1dd0a93..deffd7b 100644 --- a/composer.json +++ b/composer.json @@ -10,14 +10,13 @@ "license": "MIT", "minimum-stability": "stable", "require": { - "laravel/framework": "^8|^9|^10", + "laravel/framework": "^9|^10|^11", "spatie/sheets": "^1.10" }, "require-dev": { - "brianium/paratest": "^6.2", - "nunomaduro/collision": "^5|^6", "orchestra/testbench": ">=6.15", - "squizlabs/php_codesniffer": "^3.5" + "squizlabs/php_codesniffer": "^3.5", + "phpunit/phpunit": "<11" }, "autoload": { "psr-4": { diff --git a/phpunit.xml b/phpunit.xml index c2e198a..1fea878 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -3,12 +3,8 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" backupGlobals="false" - backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" - convertErrorsToExceptions="true" - convertNoticesToExceptions="true" - convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" executionOrder="random" @@ -16,28 +12,18 @@ failOnRisky="true" failOnEmptyTestSuite="true" beStrictAboutOutputDuringTests="true" - verbose="true" - printerClass="NunoMaduro\Collision\Adapters\Phpunit\Printer"> > tests - - - ./src - - - - - - - + +