diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index e820f11..b85e536 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -10,15 +10,23 @@ jobs: fail-fast: true matrix: php: [ "8.0", "8.1", "8.2", "8.3" ] - laravel: [ "8.0", "9.0", "10.0" ] + laravel: [ "8.0", "9.0", "10.0", "11.0" ] psql: [ "9", "10", "11", "12", "13", "14", "15" ] exclude: - laravel: "8.0" php: "8.3" + - laravel: "9.0" php: "8.3" + - laravel: "10.0" php: "8.0" + + - laravel: "11.0" + php: "8.0" + + - laravel: "11.0" + php: "8.1" name: php ${{ matrix.php }}, lr ${{ matrix.laravel }}, pg ${{ matrix.psql }} diff --git a/composer.json b/composer.json index 0c2e590..71562f4 100644 --- a/composer.json +++ b/composer.json @@ -44,16 +44,16 @@ "doctrine/dbal": "^3.0", "dragon-code/contracts": "^2.15", "dragon-code/support": "^6.0", - "illuminate/contracts": "^8.0 || ^9.0 || ^10.0", - "illuminate/database": "^8.0 || ^9.0 || ^10.0", - "illuminate/support": "^8.0 || ^9.0 || ^10.0" + "illuminate/contracts": "^8.0 || ^9.0 || ^10.0 || ^11.0", + "illuminate/database": "^8.0 || ^9.0 || ^10.0 || ^11.0", + "illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0" }, "require-dev": { "ext-pdo_mysql": "*", "ext-pdo_pgsql": "*", "mockery/mockery": "^1.0", - "orchestra/testbench": "^6.0 || ^7.0 || ^8.0", - "phpunit/phpunit": "^9.6" + "orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0", + "phpunit/phpunit": "^9.6 || ^10.0" }, "minimum-stability": "stable", "prefer-stable": true, diff --git a/phpunit.xml b/phpunit.xml index b89079c..6317452 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -7,8 +7,8 @@ bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" - convertNoticesToExceptions="true" - convertWarningsToExceptions="true" + convertNoticesToExceptions="false" + convertWarningsToExceptions="false" processIsolation="false" stopOnError="false" stopOnFailure="false"