diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f449dd9..fc3c58d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - laravel: [9, 10] + include: + - laravel: 10 + php: 8.1 + - laravel: 9 + php: 8.0 steps: - uses: actions/checkout@v2 diff --git a/composer.json b/composer.json index 42e5035..02e56ba 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ } }, "require": { - "php": "^8.1", + "php": "^8.0", "illuminate/support": "^9.0|^10.0", "archtechx/helpers": "^0.3.1" },