Skip to content

Commit

Permalink
Merge pull request #4 from tarfin-labs/laravel-9-support
Browse files Browse the repository at this point in the history
Laravel 9 support added.
  • Loading branch information
tkaratug authored May 10, 2022
2 parents 2c4d862 + d703fc0 commit 818edf4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.*

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 818edf4

Please sign in to comment.