Skip to content

Commit 818edf4

Browse files
authored
Merge pull request #4 from tarfin-labs/laravel-9-support
Laravel 9 support added.
2 parents 2c4d862 + d703fc0 commit 818edf4

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.0]
12-
laravel: [8.*]
13-
dependency-version: [prefer-lowest, prefer-stable]
11+
php: [8.0, 8.1]
12+
laravel: [8.*, 9.*]
13+
stability: [prefer-lowest, prefer-stable]
1414
include:
15+
- laravel: 9.*
16+
testbench: 7.*
1517
- laravel: 8.*
1618
testbench: 6.*
1719

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to `laravel-spatial` will be documented in this file
44

5+
## 1.2.0 - 2012-02-08
6+
- Laravel 9 support added.
7+
58
# 1.1.2 - 2022-03-08
69
- Bug fixed for casting location columns that is null.
710

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.0",
20-
"illuminate/support": "^8.0"
19+
"php": "^8.0|^8.1",
20+
"illuminate/support": "^8.0|^9.0"
2121
},
2222
"require-dev": {
2323
"doctrine/dbal": "^3.3",
24-
"orchestra/testbench": "^6.0",
24+
"orchestra/testbench": "^6.0|^7.0",
2525
"phpunit/phpunit": "^9.0"
2626
},
2727
"autoload": {

0 commit comments

Comments
 (0)