Skip to content

Commit

Permalink
Merge pull request #21 from Laravel-Lang/andrey-helldar-patch-1
Browse files Browse the repository at this point in the history
Added Laravel 12 support
  • Loading branch information
andrey-helldar authored Feb 24, 2025
2 parents c1d40ff + de94305 commit b0b7612
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ "8.1", "8.2", "8.3" ]
laravel: [ "10.0", "11.0" ]
php: [ "8.1", "8.2", "8.3", "8.4" ]
laravel: [ "10.0", "11.0", "12.0" ]
exclude:
- laravel: "11.0"
php: "8.1"

- laravel: "12.0"
php: "8.1"

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

Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@
"require": {
"php": "^8.1",
"dragon-code/support": "^6.13",
"illuminate/config": "^10.0 || ^11.0",
"illuminate/http": "^10.0 || ^11.0",
"illuminate/routing": "^10.0 || ^11.0",
"illuminate/support": "^10.0 || ^11.0",
"laravel-lang/config": "^1.6",
"laravel-lang/locales": "^2.8"
"illuminate/config": "^10.0 || ^11.0 || ^12.0",
"illuminate/http": "^10.0 || ^11.0 || ^12.0",
"illuminate/routing": "^10.0 || ^11.0 || ^12.0",
"illuminate/support": "^10.0 || ^11.0 || ^12.0",
"laravel-lang/config": "^1.12",
"laravel-lang/locales": "^2.10"
},
"require-dev": {
"orchestra/testbench": "^8.23 || ^9.1",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^2.4",
"orchestra/testbench": "^8.23 || ^9.1 || ^10.0",
"pestphp/pest": "^2.34 || ^3.0",
"pestphp/pest-plugin-laravel": "^2.4 || ^3.0",
"symfony/var-dumper": "^6.0 || ^7.0"
},
"minimum-stability": "stable",
Expand Down

0 comments on commit b0b7612

Please sign in to comment.