Skip to content

Commit

Permalink
Adds Laravel 10 Support (#14)
Browse files Browse the repository at this point in the history
This PR adds support for Laravel 10 to the package by updating its
dependencies and ensuring compatibility with the latest version of the
framework. This will allow users to use the package with the latest
Laravel release and take advantage of its new features and improvements.

---------

Co-authored-by: yordadev <[email protected]>
  • Loading branch information
yordadev and yordadev authored Apr 12, 2023
1 parent 4ff3ed7 commit 220753e
Show file tree
Hide file tree
Showing 49 changed files with 1,001 additions and 1,120 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: run-tests

on:
push:
push:
pull_request:

jobs:
Expand All @@ -10,14 +10,14 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1]
laravel: [8.*, 9.*]
php: [8.1, 8.2]
laravel: [9.*, 10.*]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*


name: PHP${{ matrix.php }} - Laravel ${{ matrix.laravel }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"require": {
"php": "^8.0",
"ext-pdo_sqlite": "*",
"illuminate/contracts": "^8.0|^9.0",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"stevebauman/location": "*"
},
"require-dev": {
Expand Down
Loading

0 comments on commit 220753e

Please sign in to comment.