diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 928cceb..41f5bfa 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - php: [8.3, 8.2, 8.1] + php: [8.4, 8.3, 8.2, 8.1] laravel: ['10.*', '11.*'] dependency-version: [prefer-stable] include: @@ -27,6 +27,8 @@ jobs: exclude: - laravel: 11.* php: 8.1 + - laravel: 10.* + php: 8.4 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/README.md b/README.md index c3d6d12..49f63d1 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,11 @@ Log Laravel requests and responses for statistical purposes and optionally aggregate by hours/days/months for minimal db requirements. -| Version | Laravel | PHP | -|---------|-------------|-------------------------| -| 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* \| 8.1.* | -| 2.* | 10.* | 8.1.* \| 8.2.* | -| 3.* | 11.* | 8.1.* \| 8.2.* \| 8.3.* | +| Version | Laravel | PHP | +|---------|-------------|----------------------------------| +| 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* \| 8.1.* | +| 2.* | 10.* | 8.1.* \| 8.2.* | +| 3.* | 11.* | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* | ## Description diff --git a/composer.json b/composer.json index 68beaa0..b1f7194 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ } ], "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", "bilfeldt/laravel-request-logger": "^3.0", "illuminate/contracts": "^10.0 || ^11.0", "laravel/framework": "^10.0 || ^11.0"