Skip to content

Commit 5417d72

Browse files
committed
v2.0.2: supports Laravel 11+ and PHP 8.2+
1 parent f04fd34 commit 5417d72

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
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-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

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

13-
* v2 supports Laravel 10+ and PHP 8.1+
13+
* v2 supports Laravel 10,11 and PHP 8.1,8.2
1414
* v1 supports Laravel 8,9 and PHP 8.1+
1515

1616
This package supports MySQL v8 or v5.7, and MariaDB v10.

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": {

phpstan.neon

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
includes:
2-
- ./vendor/nunomaduro/larastan/extension.neon
2+
- ./vendor/larastan/larastan/extension.neon
33
parameters:
44
paths:
55
- src

0 commit comments

Comments
 (0)