Skip to content

Commit

Permalink
v3: supports Laravel 11+ and PHP 8.2+
Browse files Browse the repository at this point in the history
  • Loading branch information
asanikovich committed Sep 29, 2024
1 parent f04fd34 commit f979492
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 8.2, 8.1 ]
laravel: [ 10.* ]
php: [ 8.1, 8.2, 8.3 ]
laravel: [ 10.*, 11.* ]
db: [ 'mysql:8.0', 'mysql:5.7', 'mariadb:10.9' ]
dependency-version: [ prefer-stable ]
include:
- laravel: 10.*
- laravel: ${{ matrix.laravel }}
testbench: ^8.0

services:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 8.2, 8.1 ]
php: [ 8.1, 8.2, 8.3 ]

steps:
- name: Checkout code
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

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

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

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
}
],
"require": {
"php": "^8.1",
"php": "^8.1|^8.2",
"ext-json": "*",
"ext-pdo": "*",
"laravel/framework": "^10.0",
"laravel/framework": "^10.0|^11.0",
"phayes/geophp": "^1.2"
},
"require-dev": {
"doctrine/dbal": "^3.0",
"doctrine/dbal": "^3.0|^4.1",
"laravel/pint": "^1.5",
"nunomaduro/larastan": "^1.0|^2.4",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^1.0|^2.6",
"pestphp/pest-plugin-laravel": "^1.0|^2.0"
"larastan/larastan": "^1.0|^2.4",
"orchestra/testbench": "^8.0|^9.4",
"pestphp/pest": "^1.0|^2.6|^3.0",
"pestphp/pest-plugin-laravel": "^1.0|^2.0|^3.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit f979492

Please sign in to comment.