diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f1fb2ac..693da5b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,10 +8,12 @@ jobs: strategy: fail-fast: true matrix: - php: [8.0] - laravel: [8.*] - dependency-version: [prefer-lowest, prefer-stable] + php: [8.0, 8.1] + laravel: [8.*, 9.*] + stability: [prefer-lowest, prefer-stable] include: + - laravel: 9.* + testbench: 7.* - laravel: 8.* testbench: 6.* diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fc0ccb..1e991c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to `laravel-spatial` will be documented in this file +## 1.2.0 - 2012-02-08 +- Laravel 9 support added. + # 1.1.2 - 2022-03-08 - Bug fixed for casting location columns that is null. diff --git a/composer.json b/composer.json index e06f655..8969287 100644 --- a/composer.json +++ b/composer.json @@ -16,12 +16,12 @@ } ], "require": { - "php": "^8.0", - "illuminate/support": "^8.0" + "php": "^8.0|^8.1", + "illuminate/support": "^8.0|^9.0" }, "require-dev": { "doctrine/dbal": "^3.3", - "orchestra/testbench": "^6.0", + "orchestra/testbench": "^6.0|^7.0", "phpunit/phpunit": "^9.0" }, "autoload": {