Skip to content

Commit cb377d3

Browse files
Laravel 13.x Compatibility (#37)
1 parent d09ff69 commit cb377d3

2 files changed

Lines changed: 21 additions & 16 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,23 @@ on:
44
push:
55
paths:
66
- '**.php'
7-
- '.github/workflows/run-tests.yml'
8-
- 'phpunit.xml.dist'
9-
- 'composer.json'
10-
- 'composer.lock'
7+
- .github/workflows/run-tests.yml
8+
- phpunit.xml.dist
9+
- composer.json
10+
- composer.lock
1111

1212
jobs:
1313
test:
1414
runs-on: ${{ matrix.os }}
15+
1516
timeout-minutes: 5
17+
1618
strategy:
1719
fail-fast: true
1820
matrix:
1921
os: [ubuntu-latest, windows-latest]
2022
php: [8.3, 8.2]
21-
laravel: [11.*, 10.*]
23+
laravel: ['10.*', '11.*', '13.*']
2224
stability: [prefer-lowest, prefer-stable]
2325
include:
2426
- laravel: 11.*
@@ -27,6 +29,9 @@ jobs:
2729
- laravel: 10.*
2830
testbench: 8.*
2931
carbon: ^2.63
32+
exclude:
33+
- laravel: 13.*
34+
php: 8.2
3035

3136
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3237

composer.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,23 @@
2626
],
2727
"require": {
2828
"php": ">=8.2 <9.0",
29-
"illuminate/contracts": "^10.0||^11.0||^12.0",
29+
"illuminate/contracts": "^10.0||^11.0||^12.0||^13.0",
3030
"spatie/laravel-package-tools": "^1.16"
3131
},
3232
"require-dev": {
3333
"tightenco/duster": "^3.2",
34-
"driftingly/rector-laravel": "^1.2",
35-
"larastan/larastan": "^2.9",
34+
"driftingly/rector-laravel": "^1.2||^2.1",
35+
"larastan/larastan": "^2.9||^3.9",
3636
"laravel/pint": "^1.14",
3737
"nunomaduro/collision": "^8.1.1||^7.10.0",
38-
"orchestra/testbench": "^9.0.0||^8.22.0",
39-
"pestphp/pest": "^2.34",
40-
"pestphp/pest-plugin-arch": "^2.7",
41-
"pestphp/pest-plugin-laravel": "^2.3",
38+
"orchestra/testbench": "^9.0.0||^8.22.0||^11.0",
39+
"pestphp/pest": "^2.34||^4.4",
40+
"pestphp/pest-plugin-arch": "^2.7||^4.0",
41+
"pestphp/pest-plugin-laravel": "^2.3||^4.1",
4242
"phpstan/extension-installer": "^1.3",
43-
"phpstan/phpstan-deprecation-rules": "^1.1",
44-
"phpstan/phpstan-phpunit": "^1.3",
45-
"rector/rector": "^1.2"
43+
"phpstan/phpstan-deprecation-rules": "^1.1||^2.0",
44+
"phpstan/phpstan-phpunit": "^1.3||^2.0",
45+
"rector/rector": "^1.2||^2.3"
4646
},
4747
"autoload": {
4848
"psr-4": {
@@ -82,7 +82,7 @@
8282
"extra": {
8383
"laravel": {
8484
"providers": [
85-
"Msamgan\\LaravelEnvKeysChecker\\LaravelEnvKeysCheckerServiceProvider"
85+
"Msamgan\\LaravelEnvKeysChecker\\LaravelEnvKeysCheckerServiceProvider"
8686
],
8787
"aliases": {
8888
"LaravelEnvKeysChecker": "Msamgan\\LaravelEnvKeysChecker\\Facades\\LaravelEnvKeysChecker"

0 commit comments

Comments
 (0)