diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index dfb0cf3..8a2dc20 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.1, 8.2, 8.3, 8.4] + php: [8.1, 8.2, 8.3, 8.4, 8.5] laravel: ['10.*', '11.*', '12.*'] dependency-version: [prefer-stable] include: @@ -29,8 +29,12 @@ jobs: exclude: - laravel: 10.* php: 8.4 + - laravel: 10.* + php: 8.5 - laravel: 11.* php: 8.1 + - laravel: 11.* + php: 8.5 - laravel: 12.* php: 8.1 diff --git a/.gitignore b/.gitignore index a072651..2ff85a2 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,7 @@ public/hot public_html/storage public_html/hot +composer.lock storage/*.key .env Homestead.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ee4c3b..9f6a824 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes will be documented in this file +## 1.5.0 - 2025-11-28 + +- Add PHP 8.5 support + ## 1.4.0 - 2025-02-17 - Add Laravel 12 support diff --git a/composer.json b/composer.json index f62d49a..3a62693 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ } ], "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0", "illuminate/contracts": "^10.0 || ^11.0 || ^12.0" }, "require-dev": {