Skip to content

Commit

Permalink
Merge pull request #104 from milwad-dev/upgrade
Browse files Browse the repository at this point in the history
[1.x] Support Laravel 12
  • Loading branch information
milwad-dev authored Mar 1, 2025
2 parents 8d8d809 + ffe3ee5 commit 3e9871e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 6 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2, 8.3]
laravel: [9.*, 10.*, 11.*]
php: [8.0, 8.1, 8.2, 8.3, 8.4]
laravel: [9.*, 10.*, 11.*, 12.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 12.*
testbench: 10.*
phpunit: 11.*

- laravel: 11.*
testbench: 9.*
phpunit: 11.*
Expand All @@ -25,6 +29,15 @@ jobs:
phpunit: 10.*

exclude:
- laravel: 12.*
php: 8.1

- laravel: 12.*
php: 8.0

- laravel: 11.*
php: 8.4

- laravel: 11.*
php: 8.1

Expand All @@ -34,6 +47,12 @@ jobs:
- laravel: 10.*
php: 8.0

- laravel: 10.*
php: 8.0

- laravel: 9.*
php: 8.4

- laravel: 9.*
php: 8.3

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@
"license": "MIT",
"authors": [
{
"name": "milwad khosravi",
"name": "Milwad Khosravi",
"email": "[email protected]",
"homepage": "https://github.com/milwad-dev",
"role": "Developer"
"role": "Author"
}
],
"require": {
"php": "^8.0",
"laravel/framework": "9.*|10.*|11.*",
"laravel/framework": "9.*|10.*|11.*|12.*",
"ext-bcmath": "*",
"ext-ctype": "*"
},
"require-dev": {
"imanghafoori/php-imports-analyzer": "1.0.*",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
"phpunit/phpunit": "^9.0|^10.0|^11.0"
},
"autoload": {
Expand Down

0 comments on commit 3e9871e

Please sign in to comment.