Skip to content

Commit f979492

Browse files
committed
v3: supports Laravel 11+ and PHP 8.2+
1 parent f04fd34 commit f979492

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.github/workflows/pest.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: [ 8.2, 8.1 ]
15-
laravel: [ 10.* ]
14+
php: [ 8.1, 8.2, 8.3 ]
15+
laravel: [ 10.*, 11.* ]
1616
db: [ 'mysql:8.0', 'mysql:5.7', 'mariadb:10.9' ]
1717
dependency-version: [ prefer-stable ]
1818
include:
19-
- laravel: 10.*
19+
- laravel: ${{ matrix.laravel }}
2020
testbench: ^8.0
2121

2222
services:

.github/workflows/phpstan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: [ 8.2, 8.1 ]
14+
php: [ 8.1, 8.2, 8.3 ]
1515

1616
steps:
1717
- name: Checkout code

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
**This Laravel package allows you to easily work with spatial data types and functions.**
1212

13+
* v3 supports Laravel 11+ and PHP 8.2+
1314
* v2 supports Laravel 10+ and PHP 8.1+
1415
* v1 supports Laravel 8,9 and PHP 8.1+
1516

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^8.1",
13+
"php": "^8.1|^8.2",
1414
"ext-json": "*",
1515
"ext-pdo": "*",
16-
"laravel/framework": "^10.0",
16+
"laravel/framework": "^10.0|^11.0",
1717
"phayes/geophp": "^1.2"
1818
},
1919
"require-dev": {
20-
"doctrine/dbal": "^3.0",
20+
"doctrine/dbal": "^3.0|^4.1",
2121
"laravel/pint": "^1.5",
22-
"nunomaduro/larastan": "^1.0|^2.4",
23-
"orchestra/testbench": "^8.0",
24-
"pestphp/pest": "^1.0|^2.6",
25-
"pestphp/pest-plugin-laravel": "^1.0|^2.0"
22+
"larastan/larastan": "^1.0|^2.4",
23+
"orchestra/testbench": "^8.0|^9.4",
24+
"pestphp/pest": "^1.0|^2.6|^3.0",
25+
"pestphp/pest-plugin-laravel": "^1.0|^2.0|^3.0"
2626
},
2727
"autoload": {
2828
"psr-4": {

0 commit comments

Comments
 (0)